Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for fals (0.28 sec)

  1. src/encoding/json/scanner.go

    		return scanContinue
    	}
    	return s.error(c, "in literal false (expecting 's')")
    }
    
    // stateFals is the state after reading `fals`.
    func stateFals(s *scanner, c byte) int {
    	if c == 'e' {
    		s.step = stateEndValue
    		return scanContinue
    	}
    	return s.error(c, "in literal false (expecting 'e')")
    }
    
    // stateN is the state after reading `n`.
    func stateN(s *scanner, c byte) int {
    	if c == 'u' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. src/encoding/json/decode_test.go

    	// unmarshal interface test
    	{CaseName: Name(""), in: `{"T":false}`, ptr: new(unmarshaler), out: umtrue}, // use "false" so test will fail if custom unmarshaler is not called
    	{CaseName: Name(""), in: `{"T":false}`, ptr: new(*unmarshaler), out: &umtrue},
    	{CaseName: Name(""), in: `[{"T":false}]`, ptr: new([]unmarshaler), out: umslice},
    	{CaseName: Name(""), in: `[{"T":false}]`, ptr: new(*[]unmarshaler), out: &umslice},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. releasenotes/notes/endpoints-false-negative.yaml

    dwq <******@****.***> 1702923949 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 18:25:49 UTC 2023
    - 176 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

    #define ASSERT(value) { if (FALSE == (int)(value)) { CU_assertImplementation((BOOL)value, __LINE__, #value, __FILE__, "", FALSE); return; }}
    /** Deprecated (version 1). @deprecated Use CU_ASSERT_TRUE_FATAL. */
    #define ASSERT_TRUE(value) { if (FALSE == (value)) { CU_assertImplementation(FALSE, __LINE__, ("ASSERT_TRUE(" #value ")"), __FILE__, "", FALSE); return; }}
    /** Deprecated (version 1). @deprecated Use CU_ASSERT_FALSE_FATAL. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  5. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/AbiExtractingClasspathResourceHasherTest.groovy

            1 * apiClassExtractor2.appendConfigurationToHasher(_) >> { args -> args[0].putString("second") }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/20398")
        def "falls back to full file hash when abi extraction fails for a regular file"() {
            def apiClassExtractor = Mock(ApiClassExtractor)
    
            def resourceHasher = AbiExtractingClasspathResourceHasher.withFallback(apiClassExtractor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. src/internal/poll/copy_file_range_linux.go

    			return 0, false, nil
    		case nil:
    			if n == 0 {
    				// If we did not read any bytes at all,
    				// then this file may be in a file system
    				// where copy_file_range silently fails.
    				// https://lore.kernel.org/linux-fsdevel/******@****.***/T/#m05753578c7f7882f6e9ffe01f981bc223edef2b0
    				if written == 0 {
    					return 0, false, nil
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 17:40:10 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerIntegrationTest.groovy

    import org.gradle.integtests.resolve.AbstractModuleDependencyResolveTest
    
    // we only need to check without Gradle metadata, it doesn't matter
    @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "false")
    class CustomVersionListerIntegrationTest extends AbstractModuleDependencyResolveTest {
        void "can list versions without hitting repository"() {
            withLister([testA: [1, 2, 3]])
            given:
            repository {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AtomicLongMap.java

          return false;
        }
    
        long oldValue = atomic.get();
        if (oldValue != value) {
          return false;
        }
    
        if (oldValue == 0L || atomic.compareAndSet(oldValue, 0L)) {
          // only remove after setting to zero, to avoid concurrent updates
          map.remove(key, atomic);
          // succeed even if the remove fails, since the value was already adjusted
          return true;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. pkg/backoff/exponential_test.go

    	return t
    }
    
    func TestRetry(t *testing.T) {
    	o := DefaultOption()
    	o.InitialInterval = 1 * time.Microsecond
    	ebf := NewExponentialBackOff(o)
    
    	// Run a task that fails the first time and retries.
    	wg := sync.WaitGroup{}
    	wg.Add(2)
    	failed := false
    	err := ebf.RetryWithContext(context.TODO(), func() error {
    		defer wg.Done()
    		if failed {
    			return nil
    		}
    		failed = true
    		return errors.New("fake error")
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 05 16:03:30 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/security/simple-oauth2.md

    === "Python 3.10+ nicht annotiert"
    
        !!! tip "Tipp"
            Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
        ```Python hl_lines="2  74"
        {!> ../../../docs_src/security/tutorial003_py310.py!}
        ```
    
    === "Python 3.8+ nicht annotiert"
    
        !!! tip "Tipp"
            Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
        ```Python hl_lines="4  76"
        {!> ../../../docs_src/security/tutorial003.py!}
        ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:44 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top