Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 265 for ctan (0.05 sec)

  1. pkg/controller/replicaset/replica_set_test.go

    	fakePodControl := controller.FakePodControl{}
    	stopCh := make(chan struct{})
    	defer close(stopCh)
    	manager, informers := testNewReplicaSetControllerFromClient(t, client, stopCh, BurstReplicas)
    	manager.podControl = &fakePodControl
    
    	received := make(chan string)
    	manager.syncHandler = func(ctx context.Context, key string) error {
    		received <- key
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client_test.go

    // when certain messages are seen.
    type opensslOutputSink struct {
    	handshakeComplete chan struct{}
    	readKeyUpdate     chan struct{}
    	all               []byte
    	line              []byte
    }
    
    func newOpensslOutputSink() *opensslOutputSink {
    	return &opensslOutputSink{make(chan struct{}), make(chan struct{}), nil, nil}
    }
    
    // opensslEndOfHandshake is a message that the “openssl s_server” tool will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    	if err != nil {
    		// We start off with '0' if we can read the attributes
    		return 0
    	}
    	return binary.LittleEndian.Uint64(buf[:8])
    }
    
    func (s *xlStorage) getWriteAttribute() uint64 {
    	attr := "user.total_writes"
    	buf, err := xattr.LGet(s.formatFile, attr)
    	if err != nil {
    		// We start off with '0' if we can read the attributes
    		return 0
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. src/encoding/xml/marshal_test.go

    	Name map[string]string `xml:"name,attr"`
    }
    
    var marshalErrorTests = []struct {
    	Value any
    	Err   string
    	Kind  reflect.Kind
    }{
    	{
    		Value: make(chan bool),
    		Err:   "xml: unsupported type: chan bool",
    		Kind:  reflect.Chan,
    	},
    	{
    		Value: map[string]string{
    			"question": "What do you get when you multiply six by nine?",
    			"answer":   "42",
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            from as List == ["a", "b"]
            files as List == [file1, file2]
        }
    
        def "can add paths to the collection"() {
            when:
            collection.from("src1", "src2")
            then:
            collection.from as List == ["src1", "src2"]
        }
    
        def "can set the paths of the collection"() {
            given:
            collection.from("ignore-me")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    You can do many of the same things with file trees that you can with file collections:
    
    * iterate over them (depth first)
    * filter them (using link:{javadocPath}/org/gradle/api/file/FileTree.html#matching-org.gradle.api.Action-[FileTree.matching(org.gradle.api.Action)] and Ant-style patterns)
    * merge them
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    [[sec:trusting-keys-globally]]
    === Trusting keys globally
    
    Signature verification has the advantage that it can make the configuration of dependency verification easier by not having to explicitly list all artifacts like for checksum verification only.
    In fact, it's common that the same key can be used to sign several artifacts.
    If this is the case, you can move the trusted key from the artifact level to the global configuration block:
    
    [source,xml]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    On the few occasions that you want to debug your code while the tests are running, it can be helpful if you can attach a debugger at that point. You can either set the link:{groovyDslPath}/org.gradle.api.tasks.testing.Test.html#org.gradle.api.tasks.testing.Test:debug[Test.getDebug()] property to `true` or use the `--debug-jvm` command line option, or use `--no-debug-jvm` to set it to false.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    func (t *tester) runPending(nextTest *distTest) {
    	worklist := t.worklist
    	t.worklist = nil
    	for _, w := range worklist {
    		w.start = make(chan bool)
    		w.end = make(chan struct{})
    		// w.cmd must be set up to write to w.out. We can't check that, but we
    		// can check for easy mistakes.
    		if w.cmd.Stdout == nil || w.cmd.Stdout == os.Stdout || w.cmd.Stderr == nil || w.cmd.Stderr == os.Stderr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    // The finalizer can be removed when:
    //   - the entire Job is terminating; or
    //   - the pod's index is succeeded; or
    //   - the Pod is considered failed, unless it's removal is delayed for the
    //     purpose of transferring the JobIndexFailureCount annotations to the
    //     replacement pod. the entire Job is terminating the finalizer can be
    //     removed unconditionally; or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top