Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for fals (0.08 sec)

  1. src/cmd/go/internal/modfetch/sumdb.go

    		if strings.HasPrefix(cfg.GOPROXY, "file://") && !strings.ContainsAny(cfg.GOPROXY, ",|") {
    			must = false
    		}
    		// Exception #2: the Go proxy+checksum database cannot check itself
    		// while doing the initial download.
    		if strings.Contains(os.Getenv("GIT_HTTP_USER_AGENT"), "proxy.golang.org") {
    			must = false
    		}
    
    		// Another potential exception would be GOPROXY=direct,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:02:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. pkg/kubelet/checkpointmanager/checkpoint_manager_test.go

    			true,
    		},
    		{
    			"key2",
    			newFakeCheckpointV1("check2", nil, false),
    			false,
    		},
    	}
    
    	for _, tc := range checkpoints {
    		// Test CreateCheckpoints
    		err = manager.CreateCheckpoint(tc.checkpointKey, tc.checkpoint)
    		assert.NoError(t, err)
    
    		// Test GetCheckpoints
    		checkpointOut := newFakeCheckpointV1("", nil, false)
    		err := manager.GetCheckpoint(tc.checkpointKey, checkpointOut)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 12 06:41:04 UTC 2018
    - 6.6K bytes
    - Viewed (0)
  3. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

                succeeds ':myTask'
                skipped ':myTask'
            }
    
            where:
            method                     | code
            'setting enabled to false' | 'enabled = false'
            'onlyIf'                   | 'onlyIf { false }'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/mergepatch/util.go

    // is present in the patch (indicating that its value has changed).
    func RequireKeyUnchanged(key string) PreconditionFunc {
    	return func(patch interface{}) bool {
    		patchMap, ok := patch.(map[string]interface{})
    		if !ok {
    			return true
    		}
    
    		// The presence of key means that its value has been changed, so the test fails.
    		_, ok = patchMap[key]
    		return !ok
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. dbflute_fess/dfprop/outsideSqlMap.dfprop

    # outsideSqlMap: (NotRequired - Default map:{})
    #
    # The various settings about outsideSql. 
    #
    # o isGenerateProcedureParameterBean: (NotRequired - Default false)
    # o isGenerateProcedureCustomizeEntity: (NotRequired - Default false)
    # o targetProcedureCatalogList: (NotRequired - Default list:{})
    # o targetProcedureSchemaList: (NotRequired - Default list:{})
    # o targetProcedureNameList: (NotRequired - Default list:{})
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/rules/JacocoPluginCoverageVerificationIntegrationTest.groovy

            [Sufficient.LINE_METRIC_COVERED_RATIO,
             Insufficient.CLASS_METRIC_MISSED_COUNT,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/model/StateTransitionController.java

                throwFailure();
                return false;
            }
    
            @Override
            public ExecutionResult<Void> asResult() {
                return failure.asFailure();
            }
    
            @Override
            public boolean inStateAndNotTransitioning(T toState) {
                throwFailure();
                return false;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 03:31:44 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  8. pkg/volume/util/nestedpendingoperations/nestedpendingoperations_test.go

    		{testID: 6, keyTypes: []int{keyVolume, keyVolumePod}, expectPass: false},
    		{testID: 7, keyTypes: []int{keyVolume, keyVolumeNode}, expectPass: false},
    		{testID: 8, keyTypes: []int{keyVolumePod, keyNone}, expectPass: true},
    		{testID: 9, keyTypes: []int{keyVolumePod, keyVolume}, expectPass: false},
    		{testID: 10, keyTypes: []int{keyVolumeNode, keyNone}, expectPass: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 36.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ProjectDependenciesAttributesIntegrationTest.groovy

                    blueVariant {
                        canBeResolved = false
                        assert canBeConsumed
                        attributes {
                            attribute(Attribute.of('color', String), 'blue')
                        }
                    }
                    redVariant {
                        canBeResolved = false
                        assert canBeConsumed
                        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/FileContents.java

         * </p>
         * <ul>
         *     <li>the underlying file does not exist;</li>
         *     <li>this {@link FileContents} is connected to a {@link Provider}{@code <}{@link RegularFile}{@code >} with no value;</li>
         * </ul>
         * <p>
         *     When the underlying file exists but reading it fails, the ensuing exception is permanently propagated to callers of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 08 14:00:30 UTC 2021
    - 2.6K bytes
    - Viewed (0)
Back to top