Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 124 for getg (0.05 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

            }
            return DependentsSet.dependentClasses(Collections.emptySet(), typesInPackage);
        }
    
        /**
         * Gets the accessible, inlineable constants of the given class.
         */
        public IntSet getConstants(String className) {
            IntSet integers = classesToConstants.get(className);
            if (integers == null) {
                return IntSets.EMPTY_SET;
            }
            return integers;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    		errs = append(errs, err)
    	}
    
    	// Create/update RBAC rules that makes the bootstrap tokens able to get their CSRs approved automatically
    	if err := nodebootstraptoken.AutoApproveNodeBootstrapTokens(client); err != nil {
    		errs = append(errs, err)
    	}
    
    	// Create/update RBAC rules that makes the nodes to rotate certificates and get their CSRs approved automatically
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. pkg/controller/cronjob/utils.go

    	for t := schedule.Next(potentialEarliest); !t.After(now); t = schedule.Next(t) {
    		mostRecentTime = t
    	}
    
    	// An object might miss several starts. For example, if
    	// controller gets wedged on friday at 5:01pm when everyone has
    	// gone home, and someone comes in on tuesday AM and discovers
    	// the problem and restarts the controller, then all the hourly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    type ListerCollectionDeleter interface {
    	rest.Lister
    	rest.CollectionDeleter
    }
    
    // CRClientGetter knows how to get a ListerCollectionDeleter for a given CRD UID.
    type CRClientGetter interface {
    	// GetCustomResourceListerCollectionDeleter gets the ListerCollectionDeleter for the given CRD
    	// UID.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/informers.go

    // * the pod, if it is found and ambient is enabled
    func (s *InformerHandlers) GetPodIfAmbient(podName, podNamespace string) (*corev1.Pod, error) {
    	ns := s.namespaces.Get(podNamespace, "")
    	if ns == nil {
    		return nil, fmt.Errorf("failed to find namespace %v", ns)
    	}
    	pod := s.pods.Get(podName, podNamespace)
    	if pod == nil {
    		return nil, fmt.Errorf("failed to find pod %v", ns)
    	}
    	if util.PodRedirectionEnabled(ns, pod) {
    		return pod, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/aggregate/controller_test.go

    func TestGetService(t *testing.T) {
    	aggregateCtl := buildMockController()
    
    	// Get service from mockAdapter1
    	svc := aggregateCtl.GetService(mock.HelloService.Hostname)
    	if svc == nil {
    		t.Fatal("Fail to get service")
    	}
    	if svc.Hostname != mock.HelloService.Hostname {
    		t.Fatal("Returned service is incorrect")
    	}
    
    	// Get service from mockAdapter2
    	svc = aggregateCtl.GetService(mock.WorldService.Hostname)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/etcd/local.go

    }
    
    func prepareAndWriteEtcdStaticPod(manifestDir string, patchesDir string, cfg *kubeadmapi.ClusterConfiguration, endpoint *kubeadmapi.APIEndpoint, nodeName string, initialCluster []etcdutil.Member, isDryRun bool) error {
    	// gets etcd StaticPodSpec, actualized for the current ClusterConfiguration and the new list of etcd members
    	spec := GetEtcdPodSpec(cfg, endpoint, nodeName, initialCluster)
    
    	var usersAndGroups *users.UsersAndGroups
    	var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  8. cmd/admin-bucket-handlers.go

    }
    
    // ListRemoteTargetsHandler - lists remote target(s) for a bucket or gets a target
    // for a particular ARN type
    func (a adminAPIHandlers) ListRemoteTargetsHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	vars := mux.Vars(r)
    	bucket := pathClean(vars["bucket"])
    	arnType := vars["type"]
    
    	// Get current object layer instance.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

          // since we skip the TF::TPUReplicatedInputOp case.
          if (IsTPUOp(input_value.get().getDefiningOp()) &&
              !backward_pass_ops.contains(input_value.get().getDefiningOp()))
            values_to_add_nodes.insert(input_value.get());
      }
    
      for (Value value : values_to_add_nodes) {
        builder.setInsertionPointAfter(value.getDefiningOp());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/stdlib_test.go

    		// As long as pkg is non-nil, avoid redundant errors related to failed
    		// imports. TestStdlib will collect errors once for each package.
    		return pkg, nil
    	}
    	return nil, err
    }
    
    // getDirPackage gets the package defined in dir from the future cache.
    //
    // If this is the first goroutine requesting the package, getDirPackage
    // type-checks.
    func (c *stdlibChecker) getDirPackage(dir string) (*Package, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top