Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 190 for bin2 (0.06 sec)

  1. pkg/scheduler/metrics/metrics.go

    	PreScore                    = "PreScore"
    	Score                       = "Score"
    	ScoreExtensionNormalize     = "ScoreExtensionNormalize"
    	PreBind                     = "PreBind"
    	Bind                        = "Bind"
    	PostBind                    = "PostBind"
    	Reserve                     = "Reserve"
    	Unreserve                   = "Unreserve"
    	Permit                      = "Permit"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

        protected void checkMinimalContents(TestFile contentsDir) {
            // Check it can be executed
            executer.inDirectory(contentsDir).usingExecutable('bin/gradle').withTasks("help").run()
    
            // Scripts
            contentsDir.file('bin/gradle').assertIsFile()
            contentsDir.file('bin/gradle.bat').assertIsFile()
    
            // Top level files
            contentsDir.file('LICENSE').assertIsFile()
    
            // Core libs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    )
    
    type SecureServingOptions struct {
    	BindAddress net.IP
    	// BindPort is ignored when Listener is set, will serve https even with 0.
    	BindPort int
    	// BindNetwork is the type of network to bind to - defaults to "tcp", accepts "tcp",
    	// "tcp4", and "tcp6".
    	BindNetwork string
    	// DisableHTTP2Serving indicates that http2 serving should not be enabled.
    	DisableHTTP2Serving bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            }
    
            @Override
            public String toString() {
                return "try define scope " + scope + " to bind type " + typeToBind + ", state: " + state;
            }
        }
    
        /**
         * Attempts to bind the inputs of a rule. Does not fail if not possible to bind all inputs.
         */
        private class TryBindInputs extends ModelGoal {
            private final RuleBinder binder;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  5. internal/http/listener_test.go

    			if err != nil {
    				if strings.Contains(err.Error(), "The requested address is not valid in its context") {
    					// Ignore if IP is unbindable.
    					continue nextTest
    				}
    				if strings.Contains(err.Error(), "bind: address already in use") {
    					continue nextTest
    				}
    				t.Fatalf("Test %d: error: expected = <nil>, got = %v", i+1, err)
    			}
    		}
    
    		for _, serverAddr := range listener.Addrs() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. apache-maven/pom.xml

              <groupId>org.apache.rat</groupId>
              <artifactId>apache-rat-plugin</artifactId>
              <configuration>
                <excludes combine.children="append">
                  <exclude>src/assembly/maven/bin/m2.conf</exclude>
                  <!-- these are partial scripts, resulting in mvn scripts -->
                  <exclude>src/assembly/shared/init</exclude>
                  <exclude>src/assembly/shared/init.cmd</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/toolchain/select.go

    				}
    			}
    
    			// Set the bits in pkg/tool before bin/go.
    			// If we are racing with another go command and do bin/go first,
    			// then the check of bin/go above might succeed, the other go command
    			// would skip its own mode-setting, and then the go command might
    			// try to run a tool before we get to setting the bits on pkg/tool.
    			// Setting pkg/tool before bin/go avoids that ordering problem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_quantize.cc

      (void)applyPatternsAndFoldGreedily(func, std::move(patterns_2));
    
      SanityCheckAndAdjustment(func);
    
      // Bind the getter with the fixed configuration parameter for the correct
      // quantization settings of the ops.
      std::function<std::unique_ptr<quant::OpQuantSpec>(Operation*)>
          op_quant_spec_getter =
              std::bind(GetOpQuantSpec, std::placeholders::_1,
                        quant_specs_.disable_per_channel_for_dense_layers);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/cfg/cfg.go

    			return def
    		}
    		return dir
    	}
    
    	exe, err := os.Executable()
    	if err == nil {
    		exe, err = filepath.Abs(exe)
    		if err == nil {
    			// cmd/go may be installed in GOROOT/bin or GOROOT/bin/GOOS_GOARCH,
    			// depending on whether it was cross-compiled with a different
    			// GOHOSTOS (see https://go.dev/issue/62119). Try both.
    			if dir := filepath.Join(exe, "../.."); isGOROOT(dir) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one.go

    					UnschedulablePlugins: sets.New(status.Plugin()),
    				},
    			}
    			return framework.NewStatus(status.Code()).WithError(fitErr)
    		}
    		return status
    	}
    
    	// Run "bind" plugins.
    	if status := sched.bind(ctx, fwk, assumedPod, scheduleResult.SuggestedHost, state); !status.IsSuccess() {
    		return status
    	}
    
    	// Calculating nodeResourceString can be heavy. Avoid it if klog verbosity is below 2.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top