Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 85 for Inits (0.06 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategy.java

        public void cacheDynamicVersionsFor(int value, String units) {
            NormalizedTimeUnit timeUnit = new TimeUnitsParser().parseNotation(units, value);
            cacheDynamicVersionsFor(timeUnit.getValue(), timeUnit.getTimeUnit());
        }
    
        @Override
        public void cacheDynamicVersionsFor(int value, TimeUnit units) {
            this.cachePolicy.cacheDynamicVersionsFor(value, units);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    // matched quantizable units.
    // Next ID: 3
    message QuantizationSpec {
      // Configures matchers for identifying quantizable units. Matched quantizable
      // units will be quantized according to `method`.
      MatcherSpec matcher = 1;
    
      // Specifies how to quantize the matched quantizable units.
      Method method = 2;
    }
    
    // Quantization specifications. A simple wrapper around a sequence of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. src/internal/coverage/defs.go

    //	L9:   r := x * 2
    //
    // For the code above we would have three simple units (one for each
    // line), then an intraline unit describing the "launch() == false"
    // clause in line 8, with Parent pointing to the index of the line 8
    // unit in the units array.
    //
    // Note: in the initial version of the coverage revamp, only simple
    // units will be in use.
    type CoverableUnit struct {
    	StLine, StCol uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    }
    
    // identifyNumLabelUnits returns a map of numeric label keys to the units
    // associated with those keys.
    func identifyNumLabelUnits(p *profile.Profile, ui plugin.UI) map[string]string {
    	numLabelUnits, ignoredUnits := p.NumLabelUnits()
    
    	// Print errors for tags with multiple units associated with
    	// a single key.
    	for k, units := range ignoredUnits {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    				} else if l.numX != 0 || l.unitX != 0 {
    					numValues := numLabels[key]
    					units := numUnits[key]
    					if l.unitX != 0 {
    						var unit string
    						unit, err = getString(p.stringTable, &l.unitX, err)
    						units = padStringArray(units, len(numValues))
    						numUnits[key] = append(units, unit)
    					}
    					numLabels[key] = append(numLabels[key], l.numX)
    				}
    			}
    			if len(labels) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/SetsTest.java

      public void testImmutableEnumSet() {
        Set<SomeEnum> units = Sets.immutableEnumSet(SomeEnum.D, SomeEnum.B);
    
        assertThat(units).containsExactly(SomeEnum.B, SomeEnum.D).inOrder();
        try {
          units.remove(SomeEnum.B);
          fail("ImmutableEnumSet should throw an exception on remove()");
        } catch (UnsupportedOperationException expected) {
        }
        try {
          units.add(SomeEnum.C);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 47.8K bytes
    - Viewed (0)
  7. src/debug/dwarf/entry_test.go

    					}
    					if ent.Tag == TagCompileUnit {
    						units[method] = append(units[method], ent.Val(AttrName))
    					}
    					if method == 0 {
    						if ent.Tag != TagCompileUnit {
    							t.Fatalf("found unexpected tag %v on top level", ent.Tag)
    						}
    						r.SkipChildren()
    					}
    				}
    			}
    			t.Logf("skipping CUs:     %v", units[0])
    			t.Logf("not-skipping CUs: %v", units[1])
    			if !reflect.DeepEqual(units[0], units[1]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategySpec.groovy

        }
    
        def "configures changing modules cache with jdk5+ units"() {
            when:
            strategy.cacheChangingModulesFor(30000, "milliseconds")
    
            then:
            1 * cachePolicy.cacheChangingModulesFor(30000, TimeUnit.MILLISECONDS)
        }
    
        def "configures changing modules cache with jdk6+ units"() {
            when:
            strategy.cacheChangingModulesFor(5, "minutes")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-operations/src/testFixtures/groovy/org/gradle/internal/operations/TestBuildOperationRunner.java

                        context.progress(status);
                    }
    
                    @Override
                    public void progress(long progress, long total, String units, String status) {
                        context.progress(progress, total, units, status);
                    }
                };
            }
        }
    
        public void reset() {
            log.records.clear();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:33:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. src/cmd/cover/cover.go

    	if hcid := coverage.HardCodedPkgID(ppath); hcid != -1 {
    		return fmt.Sprintf("uint32(%d)", uint32(hcid))
    	}
    	return mkPackageIdVar()
    }
    
    func (f *File) preFunc(fn ast.Node, fname string) {
    	f.fn.units = f.fn.units[:0]
    
    	// create a new counter variable for this function.
    	cv := mkCounterVarName(len(f.pkg.counterLengths))
    	f.fn.counterVar = cv
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top