Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 968 for Remotes (0.12 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/UnknownFileSystemNodeTest.groovy

            return node instanceof UnknownFileSystemNode
        }
    
        @Override
        boolean isAllowEmptyChildren() {
            return false
        }
    
        def "invalidate #vfsSpec.searchedPath removes child #vfsSpec.selectedChildPath (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
            def resultRoot = initialRoot.invalidate(searchedPath, CASE_SENSITIVE, diffListener).get()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. pkg/version/cobra.go

    type CobraOptions struct {
    	// GetRemoteVersion is the function to be invoked to retrieve remote versions for
    	// Istio components. Optional. If not set, the 'version' subcommand will not attempt
    	// to connect to a remote side, and CLI flags such as '--remote' will be hidden.
    	GetRemoteVersion GetRemoteVersionFunc
    	GetProxyVersions GetProxyVersionFunc
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/multicluster-unknown-serviceregistry.yaml

        istio/multiCluster: "true"
      name: istio-remote-secret-istio-remote
      namespace: istio-system
    stringData:
      istio-remote: |
        apiVersion: v1
        clusters:
        - cluster:
            certificate-authority-data: Sis3WWhtcHNI
            server: https://1.2.3.4
          name: gke_istio-test_us-central1-f_istio-remote
        contexts:
        - context:
            cluster: gke_istio-test_us-central1-f_istio-remote
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 762 bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/OutgoingQueue.java

     */
    
    package org.gradle.internal.remote.internal.hub;
    
    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.queue.MultiEndPointQueue;
    import org.gradle.internal.remote.internal.hub.protocol.InterHubMessage;
    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
    - 1.8K bytes
    - Viewed (0)
  5. pkg/util/removeall/removeall.go

    limitations under the License.
    */
    
    package removeall
    
    import (
    	"fmt"
    	"io"
    	"os"
    	"syscall"
    
    	"k8s.io/mount-utils"
    )
    
    // RemoveAllOneFilesystemCommon removes the path and any children it contains,
    // using the provided remove function. It removes everything it can but returns
    // the first error it encounters. If the path does not exist, RemoveAll
    // returns nil (no error).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 16:41:02 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_passes.h

    // Creates as pass that removes variables in the session initializer.
    // This job is required with lifting variable passes. Originally, the session
    // initializer function does assigning variables. However, the read-only
    // variable assignments will be done via lifting variables pass by converting
    // the read-only variables to constant ops, instead. This pass removes the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/metadata/ExternalResourceMetaDataCompareTest.groovy

            null | null         | -1
        }
    
        def "always unchanged with incomplete remote metadata"() {
            given:
            configureMetadata(local)
            configureMetadata(remote, null, lastModified, contentLength)
    
            when:
            compare(local, factory)
    
            then:
            !unchanged
            1 * factory.create() >> remote
    
            where:
            lastModified | contentLength
            null         | -1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/authentication_test.go

    			name: "test when ClientCAFile is nil",
    			testOptions: &RequestHeaderAuthenticationOptions{
    				UsernameHeaders:     headerrequest.StaticStringSlice{"x-remote-user"},
    				GroupHeaders:        headerrequest.StaticStringSlice{"x-remote-group"},
    				ExtraHeaderPrefixes: headerrequest.StaticStringSlice{"x-remote-extra-"},
    				AllowedNames:        headerrequest.StaticStringSlice{"kube-aggregator"},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 15:01:56 UTC 2019
    - 6.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/InetAddressFactoryTest.groovy

            factory.communicationAddresses == loopback
        }
    
        def "Use remote addresses if there are no loopback addresses"() {
            when:
            loopbackAddresses([])
            def remote = [ip(192, 168, 18, 256)]
            remoteAddresses(remote)
    
            then:
            factory.communicationAddresses == remote
        }
    
        def "Use 127.0.0.1 if there are no remote and no loopback addresses"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/BuildCacheConfigurationExtensionsTest.kt

            }
        }
    
        @Test
        fun remote() {
    
            val buildCache = mock<BuildCacheConfiguration> {
                on { remote(any<Class<HttpBuildCache>>()) } doReturn mock<HttpBuildCache>()
                on { remote(any<Class<HttpBuildCache>>(), any<Action<HttpBuildCache>>()) } doReturn mock<HttpBuildCache>()
            }
    
            buildCache.remote<HttpBuildCache>()
    
            inOrder(buildCache) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top