Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for picard (0.16 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildExceptionReporter.java

                if (exceptionStyle == ExceptionStyle.FULL) {
                    try {
                        stackTrace.exception(failure);
                    } catch (Throwable t) {
                        // Discard. Should also render this as a separate build failure
                    }
                }
            }
        }
    
        static void renderStyledError(Throwable failure, StyledTextOutput details) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. cmd/storage-rest-server.go

    // keepHTTPReqResponseAlive will wait for the returned body to be read before starting the ticker.
    // The returned function should always be called to release resources.
    // An optional error can be sent which will be picked as text only error,
    // without its original type by the receiver.
    // waitForHTTPResponse should be used to the receiving side.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/start.go

    	// the child may outlive the parent but should not prolong
    	// the life of any pipes created (by the grandparent)
    	// to gather the output of the parent.
    	//
    	// By default, we discard the child process's stderr,
    	// but in line with the uploader, log to a file in debug
    	// only if that directory was created by the user.
    	fd, err := os.Stat(telemetry.Default.DebugDir())
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/informers.go

    			//
    			// If we get to this point and have a pod that really and truly has no IP in either of those,
    			// it's not routable at this point and something is wrong/we should discard this event.
    			podIPs := util.GetPodIPsIfPresent(pod)
    			if len(podIPs) == 0 {
    				log.Warnf("pod %s does not appear to have any assigned IPs, not capturing", pod.Name)
    				return nil
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

                    try {
                        LOGGER.debug("Releasing lock on {}.", displayName);
                        try {
                            if (lock != null && !lock.isShared()) {
                                // Discard information region
                                FileLockOutcome lockOutcome;
                                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32_test.go

    	{0x8da988af, 0x2ddc99fc, "abcdefghi", "crc\x01ʇ\x91M\xed\x82\xcd\x11", "crc\x01wB\x84\x81\x92\xc8\n1"},
    	{0x3981703a, 0xe6599437, "abcdefghij", "crc\x01ʇ\x91M\x85\x87\xd8e", "crc\x01wB\x84\x81\xc4P֗"},
    	{0x6b9cdfe7, 0xb2cc01fe, "Discard medicine more than two years old.", "crc\x01ʇ\x91M\xfd\xe5\xc2J", "crc\x01wB\x84\x81S\"(\xe0"},
    	{0xc90ef73f, 0xe28207f, "He who has a shady past knows that nice guys finish last.", "crc\x01ʇ\x91M\x01Nj+", "crc\x01wB\x84\x81'\xdaR\x15"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/net/http/clientserver_test.go

    	}
    }
    
    func TestChunkedResponseHeaders(t *testing.T) { run(t, testChunkedResponseHeaders) }
    func testChunkedResponseHeaders(t *testing.T, mode testMode) {
    	log.SetOutput(io.Discard) // is noisy otherwise
    	defer log.SetOutput(os.Stderr)
    	cst := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  8. pkg/kubelet/userns/userns_manager.go

    	if index < 0 || index >= m.len {
    		return fmt.Errorf("id %v is out of range", from)
    	}
    	// if the pod wasn't found then verify the range is free.
    	if !found && m.used.Has(index) {
    		return fmt.Errorf("range picked for pod %q already taken", pod)
    	}
    	// The pod is already registered, nothing to do.
    	if found && prevFrom == from {
    		return nil
    	}
    
    	klog.V(5).InfoS("new pod user namespace allocation", "podUID", pod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. cmd/import-boss/main.go

    	return pkgs, nil
    }
    
    func massage(in []*packages.Package) []*packages.Package {
    	out := []*packages.Package{}
    
    	for _, pkg := range in {
    		klog.V(2).Infof("considering pkg: %q", pkg.PkgPath)
    
    		// Discard packages which represent the <pkg>.test result.  They don't seem
    		// to hold any interesting source info.
    		if strings.HasSuffix(pkg.PkgPath, ".test") {
    			klog.V(3).Infof("ignoring testbin pkg: %q", pkg.PkgPath)
    			continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. src/go/build/read.go

    	// a compiler may ignore a UTF-8-encoded byte order mark (U+FEFF)
    	// if it is the first Unicode code point in the source text.
    	if leadingBytes, err := b.Peek(3); err == nil && bytes.Equal(leadingBytes, bom) {
    		b.Discard(3)
    	}
    	return &importReader{
    		b: b,
    		pos: token.Position{
    			Filename: name,
    			Line:     1,
    			Column:   1,
    		},
    	}
    }
    
    func isIdent(c byte) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top