Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 309 for bin2 (0.04 sec)

  1. pilot/pkg/networking/core/cluster_builder.go

    		}
    		opts.policy.ConnectionPool = sidecarConnPool
    	}
    	cb.applyTrafficPolicy(opts)
    
    	if bind != LocalhostAddress && bind != LocalhostIPv6Address {
    		// iptables will redirect our own traffic to localhost back to us if we do not use the "magic" upstream bind
    		// config which will be skipped.
    		localCluster.cluster.UpstreamBindConfig = &core.BindConfig{
    			SourceAddress: &core.SocketAddress{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

            installDir.file("bin/${applicationName}").assertIsFile()
            installDir.file("bin/${applicationName}.bat").assertIsFile()
            installDir.file("lib/application.jar").assertIsFile()
    
            def builder = new ScriptExecuter()
            builder.workingDir installDir.file('bin')
            builder.executable applicationName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. pkg/volume/volume.go

    	// be mounted after it is attached. This is a global mount
    	// point which should be bind mounted for individual volumes.
    	GetDeviceMountPath(spec *Spec) (string, error)
    
    	// MountDevice mounts the disk to a global path which
    	// individual pods can then bind mount
    	// Note that devicePath can be empty if the volume plugin does not implement any of Attach and WaitForAttach methods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

        self._lower_bound = hist_stats.lower_bound
        self._hist_freq = np.array(hist_stats.hist_freq)
        self._num_bins = len(self._hist_freq)
        self._num_bits = 8
        # i-th bin has a range [bins[i], bins[i + 1]).
        # bins[i] = lower_bound + i * bin_width
        # bins[i + 1] = lower_bound + (i + 1) * bin_width
        # So hist_mids[i] = (lower_bound + bin_width / 2) + bin_width * i
        first_mid = self._lower_bound + self._bin_width / 2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. pkg/volume/local/local.go

    		// skip below MkdirAll for windows since the "bind mount" logic is implemented differently in mount_wiondows.go
    		if err := os.MkdirAll(dir, 0750); err != nil {
    			klog.Errorf("mkdir failed on disk %s (%v)", dir, err)
    			return err
    		}
    	}
    	// Perform a bind mount to the full path to allow duplicate mounts of the same volume.
    	options := []string{"bind"}
    	if m.readOnly {
    		options = append(options, "ro")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/internal/IsolatedProjectsSafeKotlinDslScriptsModelBuilder.kt

            ScriptClassPath(
                bin = ClassPath.EMPTY, // Non-project script models currently resolve their base classpath themselves
                src = ClassPath.EMPTY + gradleSourceRoots
            )
        }
    
        val scriptPaths: ScriptClassPath by unsafeLazy {
            ScriptClassPath(
                bin = scriptClassPath,
                src = ClassPath.EMPTY + buildSrcSources + gradleSourceRoots
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/validation/validation.go

    			"score":      profile.Plugins.Score,
    			"reserve":    profile.Plugins.Reserve,
    			"permit":     profile.Plugins.Permit,
    			"preBind":    profile.Plugins.PreBind,
    			"bind":       profile.Plugins.Bind,
    			"postBind":   profile.Plugins.PostBind,
    		}
    
    		pluginsPath := path.Child("plugins")
    		for s, p := range stagesToPluginSet {
    			errs = append(errs, validatePluginSetForInvalidPlugins(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. cluster/images/etcd/Makefile

    		fi; \
    		docker run --rm --interactive -v $${etcd_release_tmp_dir}:/etcdbin golang:$(GOLANG_VERSION)$(DOCKER_VOL_OPTS) /bin/bash -c \
    			"git clone https://github.com/etcd-io/etcd $$etcd_build_dir \
    			&& cd $$etcd_build_dir \
    			&& git checkout v$${version} \
    			&& $(arch_prefix) GOARCH=$(ARCH) ./build.sh \
    			&& cp -f bin/$(ARCH)/etcd* bin/etcd* /etcdbin; echo 'done'"; \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. src/cmd/internal/dwarf/dwarf.go

    // its two arguments, then returns the new list.
    func MergeRanges(in1, in2 []Range) []Range {
    	out := make([]Range, 0, len(in1)+len(in2))
    	i, j := 0, 0
    	for {
    		var cur Range
    		if i < len(in2) && j < len(in1) {
    			if in2[i].Start < in1[j].Start {
    				cur = in2[i]
    				i++
    			} else {
    				cur = in1[j]
    				j++
    			}
    		} else if i < len(in2) {
    			cur = in2[i]
    			i++
    		} else if j < len(in1) {
    			cur = in1[j]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  10. src/net/conf_test.go

    			},
    			resolv: &dnsConfig{lookup: []string{"bind", "file"}},
    			hostTests: []nssHostTest{
    				{"google.com", "myhostname", hostLookupDNSFiles},
    				{"foo.local", "myhostname", hostLookupDNSFiles},
    			},
    		},
    		{
    			name: "openbsd_lookup_file_bind",
    			c: &conf{
    				goos: "openbsd",
    			},
    			resolv:    &dnsConfig{lookup: []string{"file", "bind"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top