Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 81 for convlit (0.12 sec)

  1. src/cmd/compile/internal/ppc64/ssa.go

    		//
    		// AuxInt value indicates conditions 0=LT 1=GT 2=EQ 3=SO 4=GE 5=LE 6=NE 7=NSO.
    		// ISEL accepts a CR bit argument, not a condition as expressed by AuxInt.
    		// Convert the condition to a CR bit argument by the following conversion:
    		//
    		// AuxInt&3 ? arg0 : arg1 for conditions LT, GT, EQ, SO
    		// AuxInt&3 ? arg1 : arg0 for conditions GE, LE, NE, NSO
    		p := s.Prog(v.Op.Asm())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    		return nil, &ConfigError{Reason: InvalidConfiguration, Message: "gRPC match must have method or service defined"}
    	}
    	// gRPC format is /<Service>/<Method>. Since we don't natively understand this, convert to various string matches
    	switch tp {
    	case k8s.GRPCMethodMatchExact:
    		if m.Method == nil {
    			return &istio.StringMatch{
    				MatchType: &istio.StringMatch_Prefix{Prefix: fmt.Sprintf("/%s/", *m.Service)},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool.go

    		defer updateTicker.Stop()
    		var lastUpdate time.Time
    
    		// We need to merge since we will get the same buckets from each pool.
    		// Therefore to get the exact bucket sizes we must merge before we can convert.
    		var allMerged dataUsageCache
    
    		update := func() {
    			mu.Lock()
    			defer mu.Unlock()
    
    			allMerged = dataUsageCache{Info: dataUsageCacheInfo{Name: dataUsageRoot}}
    			for _, info := range results {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			// We don't use SSA by default for performance reasons
    			// (https://github.com/kubernetes/kubernetes/issues/113700#issuecomment-1698563918)
    			// because most of the time an Update doesn't encounter
    			// a conflict and is faster.
    			//
    			// We could return an error here and rely on
    			// backoff+retry, but scheduling attempts are expensive
    			// and the backoff delay would cause a (small)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    // this:
    // if ( NOT(C_nm2) ) {
    //   return args_nm2
    // } else if (NOT(C_nm1)) {
    //   return args_nm1
    // } else {
    //   return args_n
    // }
    // but we don't have if/else-if operators. We can convert this to a CaseOp.
    // Note, if C_nm1==true and C_nm2 must also be true.
    branch_index = int(C_nm2) + int(C_nm1)
    selected_results = switch(branch_index) {
      case 0: return args_nm2
      case 1: return args_nm1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    			// that its existing contents match something between Go 1.11 and 1.16.
    			// Go 1.11 through 1.16 do not support graph pruning, but the latest Go
    			// version uses a pruned module graph — so we need to convert the
    			// requirements to support pruning.
    			if gover.Compare(v, gover.ExplicitIndirectVersion) >= 0 {
    				var err error
    				rs, err = convertPruning(ctx, rs, pruned)
    				if err != nil {
    					return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    // because the arguments are known to be disjoint.
    // This is used as a check for replacing memmove with Move ops.
    func isInlinableMemmove(dst, src *Value, sz int64, c *Config) bool {
    	// It is always safe to convert memmove into Move when its arguments are disjoint.
    	// Move ops may or may not be faster for large sizes depending on how the platform
    	// lowers them, so we only perform this optimization on platforms that we know to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

    function ConvertTo_MaskLength
    {
      param(
        [parameter(Mandatory = $True, Position = 0)]
        [Net.IPAddress] $SubnetMask
      )
    
      $bits = "$($SubnetMask.GetAddressBytes() | % {
        [Convert]::ToString($_, 2)
      } )" -replace "[\s0]"
      return $bits.Length
    }
    
    # Returns a network adapter object for the "management" interface via which the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    		}
    		rawAlias[nh] = host.Name(s.Attributes.K8sAttributes.ExternalName)
    	}
    
    	// unnamespacedRawAlias is like rawAlias but without namespaces.
    	// This is because an `ExternalName` isn't namespaced. If there is a conflict, the behavior is undefined.
    	// This is split from above as a minor optimization to right-size the map
    	unnamespacedRawAlias := make(map[host.Name]host.Name, len(rawAlias))
    	for k, v := range rawAlias {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    In both approaches, the file collection is treated as a set of `File` instances, i.e., your iteration variable will be of type `File`.
    
    The following example demonstrates such iteration.
    It also demonstrates how you can convert file collections to other types using the `as` operator (or supported properties):
    
    ====
    include::sample[dir="snippets/files/fileCollections/kotlin",files="build.gradle.kts[tags=usage]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top