Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 585 for gomod (0.04 sec)

  1. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.go

    // mac is a replacement for macGeneric that uses a larger buffer and redirects
    // calls that would have gone to updateGeneric to updateVX if the vector
    // facility is installed.
    //
    // A larger buffer is required for good performance because the vector
    // implementation has a higher fixed cost per call than the generic
    // implementation.
    type mac struct {
    	macState
    
    	buffer [16 * TagSize]byte // size must be a multiple of block size (16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. pkg/apis/resource/validation/validation_resourceclaim_test.go

    				return claim
    			}(),
    		},
    		"good-parameters": {
    			claim: func() *resource.ResourceClaim {
    				claim := testClaim(goodName, goodNS, goodClaimSpec)
    				claim.Spec.ParametersRef = &resource.ResourceClaimParametersReference{
    					Kind: "foo",
    					Name: "bar",
    				}
    				return claim
    			}(),
    		},
    		"good-parameters-apigroup": {
    			claim: func() *resource.ResourceClaim {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. hack/golangci-hints.yaml

        - p: ^gomega\.BeTrue$
          pkg: ^github.com/onsi/gomega$
          msg: "it does not produce a good failure message - use BeTrueBecause with an explicit printf-style failure message instead, or plain Go: if ... { ginkgo.Fail(...) }"
        - p: ^gomega\.BeFalse$
          pkg: ^github.com/onsi/gomega$
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. src/os/exec_test.go

    		t.Fatalf("Signal got err %v, want nil", err)
    	}
    
    	// Verify we actually received the signal.
    	select {
    	case <-time.After(1 * time.Second):
    		t.Error("timeout waiting for signal")
    	case <-c:
    		// Good
    	}
    }
    
    func TestProcessReleaseTwice(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	t.Parallel()
    
    	r, w, err := os.Pipe()
    	if err != nil {
    		t.Fatalf("Pipe() got err %v, want nil", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/ListIteratorTester.java

    import java.util.List;
    import java.util.ListIterator;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A utility similar to {@link IteratorTester} for testing a {@link ListIterator} against a known
     * good reference implementation. As with {@code IteratorTester}, a concrete subclass must provide
     * target iterators on demand. It also requires three additional constructor parameters: {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DarwinFileWatcherRegistryFactory.java

        @Override
        protected OsxFileWatcher createFileWatcher(BlockingQueue<FileWatchEvent> fileEvents) throws InterruptedException {
            return fileEventFunctions.newWatcher(fileEvents)
                // TODO Figure out a good value for this
                .withLatency(20, TimeUnit.MICROSECONDS)
                .start();
        }
    
        @Override
        protected FileWatcherUpdater createFileWatcherUpdater(
            OsxFileWatcher watcher,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. .github/actions/notify-translations/app/main.py

        # Messages to create or check
        new_translation_message = f"Good news everyone! 😉 There's a new translation PR to be reviewed: #{pr.number} by @{pr.user.login}. 🎉 This requires 2 approvals from native speakers to be merged. 🤓"
        done_translation_message = f"~There's a new translation PR to be reviewed: #{pr.number} by @{pr.user.login}~ Good job! This is done. 🍰☕"
    
        # Normally only one language, but still
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 23:01:46 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. src/compress/flate/deflate.go

    	// We quit when we get a match that's at least nice long
    	nice := len(win) - pos
    	if d.nice < nice {
    		nice = d.nice
    	}
    
    	// If we've got a match that's good enough, only look in 1/4 the chain.
    	tries := d.chain
    	length = prevLength
    	if length >= d.good {
    		tries >>= 2
    	}
    
    	wEnd := win[pos+length]
    	wPos := win[pos:]
    	minIndex := pos - windowSize
    
    	for i := prevHead; tries > 0; tries-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // server requests".  One QueueSet is a set of queues operating
    // according to this technique.
    //
    // Fair queuing for server requests is inspired by the fair queuing
    // technique from the world of networking.  You can find a good paper
    // on that at https://dl.acm.org/citation.cfm?doid=75247.75248 or
    // http://people.csail.mit.edu/imcgraw/links/research/pubs/networks/WFQ.pdf
    // and there is an implementation outline in the Wikipedia article at
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases_go122.go

    	// We don't parse the GODEBUG environment variable, because
    	// (a) it's tricky to do so in a manner that is consistent
    	//     with the godebug package; in particular, a simple
    	//     substring check is not good enough. The value is a
    	//     rightmost-wins list of options. But more importantly:
    	// (b) it is impossible to detect changes to the effective
    	//     setting caused by os.Setenv("GODEBUG"), as happens in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top