Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,347 for need (0.22 sec)

  1. src/go/internal/gcimporter/ureader.go

    	posBases []string // position bases (i.e., file names)
    	pkgs     []*types.Package
    	typs     []types.Type
    
    	// laterFns holds functions that need to be invoked at the end of
    	// import reading.
    	laterFns []func()
    
    	// ifaces holds a list of constructed Interfaces, which need to have
    	// Complete called after importing is done.
    	ifaces []*types.Interface
    }
    
    // later adds a function to be invoked at the end of import reading.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/runtime/iface.go

    	oldEntries := unsafe.Slice(&oldC.Entries[0], oldC.Mask+1)
    
    	// Count the number of entries we need.
    	n := 1
    	for _, e := range oldEntries {
    		if e.Typ != 0 {
    			n++
    		}
    	}
    
    	// Figure out how big a table we need.
    	// We need at least one more slot than the number of entries
    	// so that we are guaranteed an empty slot (for termination).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	if len(configsUpdated) > 0 {
    		// For headless services, trigger a full push.
    		// If EnableHeadlessService is true and svc ports are not pure HTTP, we need to regenerate listeners per endpoint.
    		// Otherwise we only need to push NDS, but still need to set full but we skip all other xDS except NDS during the push.
    		esc.c.opts.XDSUpdater.ConfigUpdate(&model.PushRequest{
    			Full:           true,
    			ConfigsUpdated: configsUpdated,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysis.java

        }
    
        /**
         * Returns the types that need to be reprocessed based on which classes are due to be recompiled. This includes:
         *
         * - types which are annotated with aggregating annotations, as aggregating processors need to see them regardless of what has changed
         * - the originating types of generated classes that need to be recompiled, since they wouldn't exist if the originating type is not reprocessed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    		return effectivePeerAuthenticationKeys(rootNamespace, isEffectiveStrictPolicy, "")
    	}
    
    	workloadSpec := &workloadCfg.Spec
    
    	// Regardless of if we have port-level overrides, if the workload policy is STRICT, then we need to reference our static STRICT policy
    	if isMtlsModeStrict(workloadSpec.Mtls) {
    		isEffectiveStrictPolicy = true
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/informers.go

    		// We have no good way to distinguish between these two cases from here. But we don't need to!
    		// Existing pods will be handled by the dataplane using `GetAmbientPods`,
    		// and the initial enqueueNamespace, and new pods will be handled by the CNI.
    
    	case controllers.EventUpdate:
    		// For update, we just need to handle opt outs
    		newPod := event.New.(*corev1.Pod)
    		oldPod := event.Old.(*corev1.Pod)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    	s, err := getStateData(cs)
    	if err != nil {
    		return framework.AsStatus(err)
    	}
    	if s.allBound {
    		// no need to bind volumes
    		return nil
    	}
    	// we don't need to hold the lock as only one node will be pre-bound for the given pod
    	podVolumes, ok := s.podVolumesByNode[nodeName]
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/DefaultIsolatedAntBuilder.java

            this.classLoaderCache = new ClassPathToClassLoaderCache(groovySystemLoaderFactory);
    
            List<File> antClasspath = Lists.newArrayList(classPathRegistry.getClassPath("ANT").getAsFiles());
            // Need tools.jar for compile tasks
            File toolsJar = Jvm.current().getToolsJar();
            if (toolsJar != null) {
                antClasspath.add(toolsJar);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 02 18:37:54 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/writebarrier.go

    	if IsStackAddr(dst) {
    		return false // writes into the stack don't need write barrier
    	}
    	// If we're writing to a place that might have heap pointers, we need
    	// the write barrier.
    	if mightContainHeapPointer(dst, t.Size(), v.MemoryArg(), zeroes) {
    		return true
    	}
    	// Lastly, check if the values we're writing might be heap pointers.
    	// If they aren't, we don't need a write barrier.
    	switch v.Op {
    	case OpStore:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformExecutionResult.java

            /**
             * Resolves location of the outputs of this result for a given input artifact.
             *
             * Produced outputs don't need to be resolved to locations, since they are already resolved to absolute paths in the workspace.
             * The relative paths of selected parts of the input artifact need to resolved based on the provided input artifact location.
             */
            ImmutableList<File> resolveForInputArtifact(File inputArtifact);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top