Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for Inits (0.21 sec)

  1. go.mod

    	github.com/coreos/go-semver v0.3.1 // indirect
    	github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
    	github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
    	github.com/docker/go-units v0.5.0 // indirect
    	github.com/eapache/go-resiliency v1.6.0 // indirect
    	github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 // indirect
    	github.com/eapache/queue v1.1.0 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/pcln.go

    	ctxt.loader.SetAttrReachable(s, true)
    	ctxt.loader.SetCarrierSym(s, state.carrier)
    	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.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    This is particularly useful for tasks that perform CPU-intensive or long-running operations, as it allows them to be executed in parallel, improving build performance.
    
    Using `WorkerExecutor`, you can submit units of work (called actions) to be executed in separate worker processes.
    This helps isolate the work from the main Gradle process, providing better reliability and performance.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. go.mod

    	github.com/coreos/go-systemd/v22 v22.5.0
    	github.com/cpuguy83/go-md2man/v2 v2.0.3
    	github.com/cyphar/filepath-securejoin v0.2.4
    	github.com/distribution/reference v0.5.0
    	github.com/docker/go-units v0.5.0
    	github.com/emicklei/go-restful/v3 v3.11.0
    	github.com/fsnotify/fsnotify v1.7.0
    	github.com/go-logr/logr v1.4.1
    	github.com/godbus/dbus/v5 v5.1.0
    	github.com/gogo/protobuf v1.3.2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    	...
    	pass.Reportf(tf.LineStart(line), "oops")
    
    # Modular analysis with Facts
    
    To improve efficiency and scalability, large programs are routinely
    built using separate compilation: units of the program are compiled
    separately, and recompiled only when one of their dependencies changes;
    independent modules may be compiled in parallel. The same technique may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/runtime/string.go

    //
    //	^[0-9]+(([KMGT]i)?B)?$
    //
    // In other words, an integer byte count with an optional unit
    // suffix. Acceptable suffixes include one of
    // - KiB, MiB, GiB, TiB which represent binary IEC/ISO 80000 units, or
    // - B, which just represents bytes.
    //
    // Returns an int64 because that's what its callers want and receive,
    // but the result is always non-negative.
    func parseByteCount(s string) (int64, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. pkg/kubelet/stats/provider_test.go

    			case 2:
    				e.Type = cadvisorapiv1.MetricType("delta")
    			}
    			switch c.Intn(2) {
    			case 0:
    				e.Format = cadvisorapiv1.IntType
    			case 1:
    				e.Format = cadvisorapiv1.FloatType
    			}
    			c.Fuzz(&e.Units)
    		})
    	var ret []cadvisorapiv1.MetricSpec
    	f.Fuzz(&ret)
    	return ret
    }
    
    func generateCustomMetrics(spec []cadvisorapiv1.MetricSpec) map[string][]cadvisorapiv1.MetricVal {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/report_test.cc

      QuantizationResults results{};
      ASSERT_TRUE(TextFormat::ParseFromString(*file_data, &results));
    
      // Check that `results` reflects the information of the quantized units
      // properly.
      ASSERT_THAT(results.results(), SizeIs(1));
      EXPECT_THAT(results.results(0).quantizable_unit().name(),
                  StrEq("composite_dot_general_fn"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		"Show percentages relative to focused subgraph",
    		"If unset, percentages are relative to full graph before focusing",
    		"to facilitate comparison with original graph."),
    	"unit": helpText(
    		"Measurement units to display",
    		"Scale the sample values to this unit.",
    		"For time-based profiles, use seconds, milliseconds, nanoseconds, etc.",
    		"For memory profiles, use megabytes, kilobytes, bytes, etc.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      scoped_ptr<ParamIteratorInterface<T> > impl_;
    };
    
    // ParamGeneratorInterface<T> is the binary interface to access generators
    // defined in other translation units.
    template <typename T>
    class ParamGeneratorInterface {
     public:
      typedef T ParamType;
    
      virtual ~ParamGeneratorInterface() {}
    
      // Generator interface definition
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top