Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 248 for chanOf (0.14 sec)

  1. src/go/build/build.go

    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname defaultToolTags
    var defaultToolTags []string
    
    // defaultReleaseTags should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/gopherjs/gopherjs
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    // issues. Initiating a renegotiation is not supported, but support for
    // accepting renegotiation requests may be enabled.
    //
    // Even when enabled, the server may not change its identity between handshakes
    // (i.e. the leaf certificate must be the same). Additionally, concurrent
    // handshake and application data flow is not permitted so renegotiation can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Many examples in this chapter use hard-coded paths as string literals.
    This makes them easy to understand, but it is not good practice.
    The problem is that paths often change, and the more places you need to change them, the more likely you will miss one and break the build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			Mode: auth.PeerAuthentication_MutualTLS_STRICT,
    		}
    	})
    	// Expect no event since the effective policy doesn't change
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.1"))[0].Address.GetWorkload().AuthorizationPolicies,
    		[]string{fmt.Sprintf("istio-system/%s", staticStrictPolicyName)})
    
    	// Change the workload policy to be permissive
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            exDependency.message == "Cannot change dependencies of dependency configuration ':conf' after it has been resolved."
    
            when:
            conf.artifacts.add(Mock(PublishArtifact))
            then:
            def exArtifact = thrown(InvalidUserDataException)
            exArtifact.message == "Cannot change artifacts of dependency configuration ':conf' after it has been resolved."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    If the stats of a file (i.e. `lastModified` and `size`) did not change, Gradle will reuse the file's fingerprint from the previous run.
    That means that Gradle does not detect changes when the stats of a file did not change.
    
    Gradle also considers the _code_ of the task as part of the inputs to the task. When a task, its actions, or its dependencies change between executions, Gradle considers the task as out-of-date.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    ```
    gradle test --continuous --tests "com.mypackage.foo.*"
    ```
    
    [[test_reporting]]
    == Test reporting
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * A change that means you should <<#rel4.8:configure_internal_tasks,configure existing `wrapper` and `init` tasks>> rather than defining your own.
     * The <<#rel4.8:pom_wildcard_exclusions,honoring of implicit wildcards in Maven POM exclusions>>, which may result in dependencies being excluded that weren't before.
     * A <<#rel4.6:annotation_processor_configuration,change to the way you add Java annotation processors to a project>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_server_test.go

    		random:                       make([]byte, 32),
    		secureRenegotiationSupported: true,
    		cipherSuites:                 []uint16{TLS_RSA_WITH_RC4_128_SHA},
    	}
    
    	bufChan := make(chan []byte, 1)
    	c, s := localPipe(t)
    
    	go func() {
    		cli := Client(c, testConfig)
    		cli.vers = clientHello.vers
    		if _, err := cli.writeHandshakeRecord(clientHello, nil); err != nil {
    			testFatal(t, err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	return d.requestWatchProgressCounter
    }
    
    type dummyWatch struct {
    	ch chan watch.Event
    }
    
    func (w *dummyWatch) ResultChan() <-chan watch.Event {
    	return w.ch
    }
    
    func (w *dummyWatch) Stop() {
    	close(w.ch)
    }
    
    func newDummyWatch() watch.Interface {
    	return &dummyWatch{
    		ch: make(chan watch.Event),
    	}
    }
    
    func (d *dummyStorage) Versioner() storage.Versioner { return nil }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top