Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,347 for need (0.1 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/map.go

    		// allow us to overload the exception bit and encode this property in
    		// info. Need to measure performance impact of this.
    		r, _ := utf8.DecodeRune(c.src[c.pSrc:])
    		oldPDst := c.pDst
    		if !f(c) {
    			return false
    		}
    		if !unicode.Is(unicode.Soft_Dotted, r) {
    			return true
    		}
    
    		// We don't need to do an NFD normalization, as a soft-dotted rune never
    		// contains U+0307. See A.3.
    
    		i := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/get_alternative_subgraph.cc

            cloned_func.erase();
          }
        }
      }
    
      // Perform the device-specific optimization last.
      // We need to run the optimization for the current device last because we
      // need to avoid any changes made the current graph polluting other
      // alternative graph views.
      Optimize(func, *current_device);
    }
    
    bool AlternativeSubgraphPass::IsAllSupportedbySpec(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. pilot/pkg/model/endpointshards.go

    	FullPush
    )
    
    // UpdateServiceEndpoints updates EndpointShards data by clusterID, hostname, IstioEndpoints.
    // It also tracks the changes to ServiceAccounts. It returns whether endpoints need to be pushed and
    // it also returns if they need to be pushed whether a full push is needed or incremental push is sufficient.
    func (e *EndpointIndex) UpdateServiceEndpoints(
    	shard ShardKey,
    	hostname string,
    	namespace string,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. pkg/controller/resourceclaim/controller.go

    			if apierrors.IsNotFound(err) {
    				return true, "need to create PodSchedulingContext for scheduled pod"
    			}
    			if err != nil {
    				// Shouldn't happen.
    				return true, fmt.Sprintf("internal error while checking for PodSchedulingContext: %v", err)
    			}
    			if scheduling.Spec.SelectedNode != pod.Spec.NodeName {
    				// Need to update PodSchedulingContext.
    				return true, "need to updated PodSchedulingContext for scheduled pod"
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  5. pkg/registry/core/service/storage/alloc.go

    	// ClusterIPs
    	// IPFamilies
    	return true
    }
    
    // Helper to avoid nil-checks all over.  Callers of this need to be checking
    // for an exact value.
    func getIPFamilyPolicy(svc *api.Service) api.IPFamilyPolicy {
    	if svc.Spec.IPFamilyPolicy == nil {
    		return "" // callers need to handle this
    	}
    	return *svc.Spec.IPFamilyPolicy
    }
    
    func sameClusterIPs(lhs, rhs *api.Service) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/pcln.go

    	ctxt.loader.SetAttrNotInSymbolTable(s, true)
    	return s
    }
    
    // makePclntab makes a pclntab object, and assembles all the compilation units
    // we'll need to write pclntab. Returns the pclntab structure, a slice of the
    // CompilationUnits we need, and a slice of the function symbols we need to
    // generate pclntab.
    func makePclntab(ctxt *Link, container loader.Bitmap) (*pclntab, []*sym.CompilationUnit, []loader.Sym) {
    	ldr := ctxt.loader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/escape/UnicodeEscaper.java

       * does not need to be escaped. When called as part of an escaping operation, the given code point
       * is guaranteed to be in the range {@code 0 <= cp <= Character#MAX_CODE_POINT}.
       *
       * <p>If an empty array is returned, this effectively strips the input character from the
       * resulting text.
       *
       * <p>If the character does not need to be escaped, this method should return {@code null}, rather
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/escape/UnicodeEscaper.java

       * does not need to be escaped. When called as part of an escaping operation, the given code point
       * is guaranteed to be in the range {@code 0 <= cp <= Character#MAX_CODE_POINT}.
       *
       * <p>If an empty array is returned, this effectively strips the input character from the
       * resulting text.
       *
       * <p>If the character does not need to be escaped, this method should return {@code null}, rather
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  9. src/runtime/slice.go

    // this function simpler. In particular, it accepts and returns the
    // new length so that the old length is not live (does not need to be
    // spilled/restored) and the new length is returned (also does not need
    // to be spilled/restored).
    //
    // growslice should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	}
    
    	executed := false
    	// Once we call unshare(CLONE_NEWNS), we cannot undo it explicitly. Instead, we need to unshare on a specific thread,
    	// then kill that thread when we are done (or rather, let Go runtime kill the thread).
    	// Unfortunately, making a new thread breaks us out of the network namespace we entered previously, so we need to restore that as well
    	go func() {
    		chErr <- func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top