Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,040 for Remotes (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_test.go

    			extraPrefixHeaders: []string{"X-Remote-Extra-1-", "X-Remote-Extra-2-"},
    			requestHeaders: http.Header{
    				"X-Remote-User":         {"Bob"},
    				"X-Remote-Group-1":      {"one-a", "one-b"},
    				"X-Remote-Group-2":      {"two-a", "two-b"},
    				"X-Remote-extra-1-key1": {"alfa", "bravo"},
    				"X-Remote-Extra-1-Key2": {"charlie", "delta"},
    				"X-Remote-Extra-1-":     {"india", "juliet"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenCustomPackagingResolveIntegrationTest.groovy

            when:
            server.resetExpectations()
            run("remote")
    
            then: // uses cached stuff
            file("remote").assertHasDescendants("remote-1.0-javadoc.jar")
            file('remote/remote-1.0-javadoc.jar').assertIsCopyOf(remote.getArtifact('remote-1.0-javadoc.jar').file)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. pkg/wasm/convert_test.go

    			},
    			wantOutput: []*core.TypedExtensionConfig{
    				extensionConfigMap["remote-load-success-local-file"],
    			},
    			wantErr: false,
    		},
    		{
    			name: "remote load fail",
    			input: []*core.TypedExtensionConfig{
    				extensionConfigMap["remote-load-fail"],
    			},
    			wantOutput: []*core.TypedExtensionConfig{
    				extensionConfigMap["remote-load-fail"],
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/codehost/vcs.go

    		return nil, fmt.Errorf("unknown vcs: %s %s", vcs, remote)
    	}
    	if !strings.Contains(remote, "://") {
    		return nil, fmt.Errorf("invalid vcs remote: %s %s", vcs, remote)
    	}
    
    	r := &vcsRepo{remote: remote, cmd: cmd}
    	var err error
    	r.dir, r.mu.Path, err = WorkDir(ctx, vcsWorkDirType+vcs, r.remote)
    	if err != nil {
    		return nil, err
    	}
    
    	if cmd.init == nil {
    		return r, nil
    	}
    
    	unlock, err := r.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/BuildCacheConfigurationExtensions.kt

        remote(T::class.java)
    
    
    /**
     * Configures a remote cache with the given type.
     *
     * If a remote build cache has already been configured with a **different** type, this method replaces it.
     *
     * If a remote build cache has already been configured with the **same**, this method configures it.
     *
     * Storing ("push") in the remote build cache is disabled by default.
     *
     * @param T the type of remote cache to configure.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api_remote_function_test.cc

    }
    TEST(CAPI, RemoteExecuteSilentCopiesLocalAsyncFuncOrdering) {
      // A remote input may be not ready when we start running a function. Test that
      // the function execution should wait until the remote input is ready.
      TestRemoteExecuteSilentCopiesFunc(/*async=*/true, /*remote=*/false,
                                        /*heavy_load_on_streaming_rpc=*/true);
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 11 22:56:03 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheConfigurationBuildOperationIntegrationTest.groovy

            result.remote.className == 'org.gradle.caching.http.HttpBuildCache'
            result.remote.config.url == url
    
            if (authenticated) {
                result.remote.config.authenticated == "true"
            } else {
                result.remote.config.authenticated == null
            }
    
            result.remote.config.useExpectContinue == "false"
    
            result.remote.type == 'HTTP'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. pkg/version/cobra_test.go

    			ordinaryCmd,
    			true,
    		},
    		{
    			"version --remote",
    			ordinaryCmd,
    			true,
    		},
    
    		{
    			"version --remote",
    			remoteCmd,
    			false,
    		},
    		{
    			"version --remote --short",
    			remoteCmd,
    			false,
    		},
    		{
    			"version --remote --output yaml",
    			remoteCmd,
    			false,
    		},
    		{
    			"version --remote --output json",
    			remoteCmd,
    			false,
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. pkg/kube/util.go

    		return nil, errors.NewRequestEntityTooLargeError(fmt.Sprintf("limit is %d", MaxRequestBodyBytes))
    	}
    	return data, nil
    }
    
    // StripUnusedFields is the transform function for shared informers,
    // it removes unused fields from objects before they are stored in the cache to save memory.
    func StripUnusedFields(obj any) (any, error) {
    	t, ok := obj.(metav1.ObjectMetaAccessor)
    	if !ok {
    		// shouldn't happen
    		return obj, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. pkg/wasm/monitoring.go

    		"wasm_config_conversion_count",
    		"number of Wasm config conversion count and results, including success, no remote load, marshal failure, remote fetch failure, miss remote fetch hint.",
    	)
    
    	wasmConfigConversionDuration = monitoring.NewDistribution(
    		"wasm_config_conversion_duration",
    		"Total time in milliseconds istio-agent spends on converting remote load in Wasm config.",
    		[]float64{1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top