Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 968 for Remotes (0.2 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionErrorHandlingIntegrationTest.groovy

                        enabled = false
                    }
    
                    remote(FailingBuildCache) {
                        shouldFail = System.getProperty("failOn")
                        push = true
                    }
                }
            """
    
            executer.beforeExecute {
                executer.withBuildCacheEnabled()
            }
        }
    
        def "remote cache #failEvent error stack trace is printed when requested (#showStacktrace)"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. releasenotes/notes/33455.yaml

    - 33455
    
    releaseNotes:
    - |
      **Improved** the installation of Istio on remote clusters using an external control plane.
      The istiodRemote component now includes all of the resources needed for either a basic remote or config cluster.
    
    upgradeNotes:
    - title: The istiodRemote installation component now includes config cluster resources.
      content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 12 16:44:21 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. src/net/interface_unix_test.go

    	}
    	if os.Getuid() != 0 {
    		t.Skip("must be root")
    	}
    
    	// We suppose that using IPv4 link-local addresses doesn't
    	// harm anyone.
    	local, remote := "169.254.0.1", "169.254.0.254"
    	ip := ParseIP(remote)
    	for i := 0; i < 3; i++ {
    		ti := &testInterface{local: local, remote: remote}
    		if err := ti.setPointToPoint(5963 + i); err != nil {
    			t.Skipf("test requires external command: %v", err)
    		}
    		if err := ti.setup(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 23:51:35 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/ConnectionSet.java

     * limitations under the License.
     */
    
    package org.gradle.internal.remote.internal.hub;
    
    import org.gradle.internal.remote.internal.RemoteConnection;
    import org.gradle.internal.remote.internal.hub.protocol.EndOfStream;
    import org.gradle.internal.remote.internal.hub.protocol.InterHubMessage;
    import org.gradle.internal.remote.internal.hub.queue.EndPointQueue;
    
    import java.util.HashSet;
    import java.util.Set;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/node/intset.go

    	}
    	return s.members[i] > 0
    }
    
    // reset removes all ids, effectively setting their refcounts to 0.
    // it is not thread-safe.
    func (s *intSet) reset() {
    	for k := range s.members {
    		delete(s.members, k)
    	}
    }
    
    // increment adds one to the refcount of the specified id.
    // it is not thread-safe.
    func (s *intSet) increment(i int) {
    	s.members[i]++
    }
    
    // decrement removes one from the refcount of the specified id,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 10 18:24:13 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  6. manifests/charts/base/templates/services.yaml

    kind: Service
    metadata:
      {{- if .Values.pilot.enabled }}
      # when local istiod is enabled, we can't use istiod service name to reach the remote control plane
      name: istiod{{- if .Values.revision }}-{{ .Values.revision}}{{- end }}-remote
      {{- else }}
      # when local istiod isn't enabled, we can use istiod service name to reach the remote control plane
      name: istiod{{- if .Values.revision }}-{{ .Values.revision}}{{- end }}
      {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:40 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/services.yaml

    kind: Service
    metadata:
      {{- if .Values.pilot.enabled }}
      # when local istiod is enabled, we can't use istiod service name to reach the remote control plane
      name: istiod{{- if .Values.revision }}-{{ .Values.revision}}{{- end }}-remote
      {{- else }}
      # when local istiod isn't enabled, we can use istiod service name to reach the remote control plane
      name: istiod{{- if .Values.revision }}-{{ .Values.revision}}{{- end }}
      {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:40 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/ConnectionSetTest.groovy

     */
    
    package org.gradle.internal.remote.internal.hub
    
    import org.gradle.internal.remote.internal.RemoteConnection
    import org.gradle.internal.remote.internal.hub.protocol.ChannelIdentifier
    import org.gradle.internal.remote.internal.hub.protocol.ChannelMessage
    import org.gradle.internal.remote.internal.hub.protocol.EndOfStream
    import org.gradle.internal.remote.internal.hub.protocol.RejectedMessage
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. tests/integration/security/remote_jwks/remote_jwks_test.go

    			}{
    				{
    					name:       "remote-jwks-without-service-entry",
    					policyFile: "./testdata/requestauthn-no-se.yaml.tmpl",
    					customizeCall: func(t framework.TestContext, from echo.Instance, opts *echo.CallOptions) {
    						opts.HTTP.Path = "/valid-token-forward-remote-jwks"
    						opts.HTTP.Headers = headers.New().WithAuthz(jwt.TokenIssuer1).Build()
    						opts.Check = check.And(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/PluginManagementWithSettingsPluginIntegrationTest.groovy

            """
            def pluginBuilder = new PluginBuilder(dir)
            pluginBuilder.addPluginId("test.remote-settings-plugin", "SettingsPlugin")
            pluginBuilder.publishAs("test:remote-settings-plugin:1.0", pluginPortal, executer)
            pluginPortal.expectPluginResolution("test.remote-settings-plugin", "1.0", "test", "remote-settings-plugin", "1.0")
        }
    
        private void withLocalSettingsPlugin(String applyMethod = "") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top