Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 543 for miny (0.21 sec)

  1. src/runtime/syscall_windows.go

    	}
    	unlock(&cbs.lock)
    }
    
    // winCallback records information about a registered Go callback.
    type winCallback struct {
    	fn     *funcval // Go function
    	retPop uintptr  // For 386 cdecl, how many bytes to pop on return
    	abiMap abiDesc
    }
    
    // abiPartKind is the action an abiPart should take.
    type abiPartKind int
    
    const (
    	abiPartBad   abiPartKind = iota
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. cmd/data-scanner.go

    	dataScannerCompactAtChildren     = 10000                            // Compact when there are this many children in a branch.
    	dataScannerCompactAtFolders      = dataScannerCompactAtChildren / 4 // Compact when this many subfolders in a single folder.
    	dataScannerForceCompactAtFolders = 250_000                          // Compact when this many subfolders in a single folder (even top level).
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. pkg/slices/slices_test.go

    				[]string{},
    			},
    			want: []*string{},
    		},
    		{
    			name: "slice with 1 element",
    			args: args[string]{
    				[]string{s1},
    			},
    			want: []*string{&s1},
    		},
    		{
    			name: "slice with many elements",
    			args: args[string]{
    				[]string{s1, s2, s3},
    			},
    			want: []*string{&s1, &s2, &s3},
    		},
    	}
    	intTests := []testCase[int]{
    		{
    			name: "empty slice",
    			args: args[int]{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. cmd/iam-etcd-store.go

    }
    
    func (ies *IAMEtcdStore) loadPolicyDocs(ctx context.Context, m map[string]PolicyDoc) error {
    	ctx, cancel := context.WithTimeout(ctx, defaultContextTimeout)
    	defer cancel()
    	//  Retrieve all keys and values to avoid too many calls to etcd in case of
    	//  a large number of policies
    	r, err := ies.client.Get(ctx, iamConfigPoliciesPrefix, etcd.WithPrefix())
    	if err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/stmt0.go

    		}
    	}
    }
    
    func returns0() {
    	return
    	return 0 /* ERROR "too many return values" */
    }
    
    func returns1(x float64) (int, *float64) {
    	return 0, &x
    	return /* ERROR "not enough return values" */
    	return "foo" /* ERRORx `cannot .* in return statement` */, x /* ERRORx `cannot use .* in return statement` */
    	return 0, &x, 1 /* ERROR "too many return values" */
    }
    
    func returns2() (a, b int) {
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. pilot/pkg/model/jwks_resolver.go

    	JwtPubKeyRefreshIntervalOnFailureResetThreshold = 60 * time.Minute
    
    	// How many times should we retry the failed network fetch on main flow. The main flow
    	// means it's called when Pilot is pushing configs. Do not retry to make sure not to block Pilot
    	// too long.
    	networkFetchRetryCountOnMainFlow = 0
    
    	// How many times should we retry the failed network fetch on refresh flow. The refresh flow
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/DependencyInjectingInstantiatorTest.groovy

            e.cause == HasBrokenConstructor.failure
        }
    
        def "fails when too many constructor parameters provided"() {
            when:
            instantiator.newInstance(HasOneInjectConstructor, 12, "param2")
    
            then:
            ObjectInstantiationException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 04:41:06 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

                    cacheAction == STORE && hasTooManyProblems -> log("Configuration cache entry discarded with too many problems ({}).", problemCountString)
                    cacheAction == STORE && !hasProblems -> log("Configuration cache entry stored.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    TYPED_TEST_CASE(FooTest, MyTypes);
    
    // If the type list contains only one type, you can write that type
    // directly without Types<...>:
    //   TYPED_TEST_CASE(FooTest, int);
    
    // Then, use TYPED_TEST() instead of TEST_F() to define as many typed
    // tests for this test case as you want.
    TYPED_TEST(FooTest, DoesBlah) {
      // Inside a test, refer to TypeParam to get the type parameter.
      // Since we are inside a derived class template, C++ requires use to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. cmd/utils_test.go

    		{
    			path:   "/bucket",
    			bucket: "bucket",
    			object: "",
    		},
    		// Test case 4 many separators and object is a directory.
    		{
    			path:   "/bucket/object/1/",
    			bucket: "bucket",
    			object: "object/1/",
    		},
    		// Test case 5 object has many trailing separators.
    		{
    			path:   "/bucket/object/1///",
    			bucket: "bucket",
    			object: "object/1///",
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 23 21:28:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top