Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 119 for better (0.46 sec)

  1. src/cmd/compile/internal/types2/expr.go

    			x.mode = invalid
    			return
    		}
    		x.mode = commaok
    		x.typ = ch.elem
    		check.hasCallOrRecv = true
    		return
    
    	case syntax.Tilde:
    		// Provide a better error position and message than what check.op below would do.
    		if !allInteger(x.typ) {
    			check.error(e, UndefinedOp, "cannot use ~ outside of interface or type constraint")
    			x.mode = invalid
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  2. src/testing/testing.go

    		letter, colon := path[0], path[1]
    		if ('a' <= letter && letter <= 'z' || 'A' <= letter && letter <= 'Z') && colon == ':' {
    			// If path starts with a drive letter we're stuck with it regardless.
    			return path
    		}
    	}
    	if os.IsPathSeparator(path[0]) {
    		return path
    	}
    	return fmt.Sprintf("%s%c%s", *outputDir, os.PathSeparator, path)
    }
    
    // startAlarm starts an alarm if requested.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    	// slots in that span (which will be allocated before that mcache
    	// obtains another span from that mcentral). Hence, it slightly
    	// overestimates the "true" live heap size. It's better to overestimate
    	// than to underestimate because 1) this triggers the GC earlier than
    	// necessary rather than potentially too late and 2) this leads to a
    	// conservative GC rate rather than a GC rate that is potentially too
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // not-compilable. In this case, the valid clusterings are {A,B} or {B,C}. B
      // should be clustered with A because it will prevent a potentially large
      // tensor from A being computed and copied.
      //
      // To choose better maximal clusterings we make multiple iterations over the
      // graph in post-order, where each such iteration is called a "phase".
    
      // Phase 0: contract metadata operations with their producer.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    		// in one go. A smaller value means the scavenger is more responsive
    		// to the scheduler in case of e.g. preemption. A larger value means
    		// that the overheads of scavenging are better amortized, so better
    		// scavenging throughput.
    		//
    		// The current value is chosen assuming a cost of ~10µs/physical page
    		// (this is somewhat pessimistic), which implies a worst-case latency of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Sets.java

       * {@link TreeSet} or the {@link Map#keySet} of an {@code IdentityHashMap}.
       *
       * <p><b>Note:</b> The returned view performs slightly better when {@code set1} is the smaller of
       * the two sets. If you have reason to believe one of your sets will generally be smaller than the
       * other, pass it first. Unfortunately, since this method sets the generic type of the returned
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    type validationOptions struct {
    	// allowDefaults permits the validation schema to contain default attributes
    	allowDefaults bool
    	// disallowDefaultsReason gives a reason as to why allowDefaults is false (for better user feedback)
    	disallowDefaultsReason string
    	// requireRecognizedConversionReviewVersion requires accepted webhook conversion versions to contain a recognized version
    	requireRecognizedConversionReviewVersion bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            discoveredEdges.add(edge);
            edge.getSelector().use(false);
        }
    
    
        /**
         * Execute any dependency substitution rules that apply to this dependency.
         *
         * This may be better done as a decorator on ConfigurationMetadata.getDependencies()
         */
        static DependencyState maybeSubstitute(DependencyState dependencyState, DependencySubstitutionApplicator dependencySubstitutionApplicator) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    //   not actually a "SubSymbol". (Tricky!)
    //
    // This method returns TRUE only for sub-symbols in the first scenario.
    //
    // FIXME: would be better to do away with this and have a better way
    // to represent container symbols.
    
    func (l *Loader) AttrSubSymbol(i Sym) bool {
    	// we don't explicitly store this attribute any more -- return
    	// a value based on the sub-symbol setting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Sets.java

       * {@link TreeSet} or the {@link Map#keySet} of an {@code IdentityHashMap}.
       *
       * <p><b>Note:</b> The returned view performs slightly better when {@code set1} is the smaller of
       * the two sets. If you have reason to believe one of your sets will generally be smaller than the
       * other, pass it first. Unfortunately, since this method sets the generic type of the returned
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
Back to top