Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 755 for opinion (0.1 sec)

  1. staging/src/k8s.io/api/authorization/v1/types.go

    	Allowed bool `json:"allowed" protobuf:"varint,1,opt,name=allowed"`
    	// Denied is optional. True if the action would be denied, otherwise
    	// false. If both allowed is false and denied is false, then the
    	// authorizer has no opinion on whether to authorize the action. Denied
    	// may not be true if Allowed is true.
    	// +optional
    	Denied bool `json:"denied,omitempty" protobuf:"varint,4,opt,name=denied"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    		if inPod.ResourceVersion == "" || inPod.ResourceVersion == "0" {
    			inPod.ResourceVersion = p.updatePod.ResourceVersion
    		}
    		if inPod.ResourceVersion != p.updatePod.ResourceVersion {
    			// If the patch didn't have an opinion on the resource version, retry like GuaranteedUpdate does
    			if inPod.ResourceVersion == currentResourceVersion {
    				continue
    			}
    			// If the patch changed the resource version and it mismatches, conflict
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    ----
    
    The drawback to this approach is that it automatically forces the project to apply the Java plugin, imposing a strong opinion on it (i.e., reducing flexibility and generality).
    In practice, the project applying the plugin might not even deal with Java code.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status_test.go

    				v1.LabelArchStable:              "new-arch",
    				"please-persist":                "foo",
    			},
    		},
    		{
    			name: "make sure existing labels do not get deleted when initial node has no opinion",
    			initialNode: &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{},
    				},
    			},
    			existingNode: &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  5. .idea/kotlinTestDataPluginTestDataPaths.xml

            </entry>
          </map>
        </option>
        <option name="testDataFiles">
          <array>
            <option value="$PROJECT_DIR$/compiler/testData" />
            <option value="$PROJECT_DIR$/compiler/fir/analysis-tests/testData" />
            <option value="$PROJECT_DIR$/compiler/tests-spec/testData" />
            <option value="$PROJECT_DIR$/js/js.translator/testData" />
            <option value="$PROJECT_DIR$/compiler/fir/raw-fir/psi2fir/testData" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 15:09:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r61/GradleProjectBuilderOptionsCrossVersionSpec.groovy

            """
    
            when:
            def project = loadToolingModel(GradleProject) {
                if (option != null) {
                    // important to set arguments, and not JVM arguments, as it's what is used by Android Studio to set the option
                    it.withArguments("-Dorg.gradle.internal.GradleProjectBuilderOptions=$option")
                }
            }
    
            then:
            result.assertOutputContains("realizing non-lazy task")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. pkg/bootstrap/config.go

    				opts = append(opts,
    					option.Localhost(option.LocalhostIPv6),
    					option.AdditionalLocalhost(option.LocalhostIPv4),
    					option.Wildcard(option.WildcardIPv6),
    					option.AdditionalWildCard(option.WildcardIPv4),
    					option.DNSLookupFamily(option.DNSLookupFamilyIPS))
    			} else {
    				opts = append(opts,
    					option.Localhost(option.LocalhostIPv4),
    					option.AdditionalLocalhost(option.LocalhostIPv6),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java

                    sb.append("'>");
                    sb.append(option.getOpt());
                    sb.append("</a>");
                }
    
                if (nonNull(option.getLongOpt())) {
                    if (nonNull(option.getOpt())) {
                        sb.append(", ");
                    }
                    sb.append("--<a name='");
                    sb.append(option.getLongOpt());
                    sb.append("'>");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilderTest.groovy

            builder.build() == defaultOptions
        }
    
        def "generates -source option when current Jvm Version is used"() {
            spec.sourceCompatibility = JavaVersion.current().toString()
    
            expect:
            builder.build() == ["-source", JavaVersion.current().toString()] + defaultOptions
        }
    
        def "generates -source option when compatibility differs from current Jvm version"() {
            spec.sourceCompatibility = "1.6"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:36 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/topologymanager/policy_options_test.go

    	testCases := []optionAvailTest{
    		{
    			option:            "this-option-does-not-exist",
    			expectedAvailable: false,
    		},
    		{
    			option:            PreferClosestNUMANodes,
    			expectedAvailable: true,
    		},
    	}
    	for _, testCase := range testCases {
    		t.Run(testCase.option, func(t *testing.T) {
    			err := CheckPolicyOptionAvailable(testCase.option)
    			isEnabled := (err == nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top