Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 217 for picard (0.27 sec)

  1. src/net/http/transfer.go

    			n, err = io.CopyN(io.Discard, bodyLocked{b}, maxPostHandlerReadBytes)
    			if err == io.EOF {
    				err = nil
    			}
    			if n == maxPostHandlerReadBytes {
    				b.earlyClose = true
    			}
    		}
    	default:
    		// Fully consume the body, which will also lead to us reading
    		// the trailer headers after the body, if present.
    		_, err = io.Copy(io.Discard, bodyLocked{b})
    	}
    	b.closed = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    		if k.obj != nil {
    			path, err := encoder.For(k.obj)
    			if err != nil {
    				if debug {
    					log.Printf("discarding fact %s about %s\n", fact, k.obj)
    				}
    				continue // object not accessible from package API; discard fact
    			}
    			object = path
    		}
    		gobFacts = append(gobFacts, gobFact{
    			PkgPath: k.pkg.Path(),
    			Object:  object,
    			Fact:    fact,
    		})
    	}
    	s.mu.Unlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/operations/DefaultBuildOperationQueue.java

                        // If an operation was pulled from the queue, but the queue was cancelled before this operation could start
                        // (for instance, because this worker was waiting on a worker lease) discard it without running.
                        return ++operationCount;
                    }
                    runOperation(operation);
                    operationCount++;
                    operation = getNextOperation();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 31 15:18:20 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. src/testing/benchmark.go

    func Benchmark(f func(b *B)) BenchmarkResult {
    	b := &B{
    		common: common{
    			signal: make(chan bool),
    			w:      discard{},
    		},
    		benchFunc: f,
    		benchTime: benchTime,
    	}
    	if b.run1() {
    		b.run()
    	}
    	return b.result
    }
    
    type discard struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

            ['java.home': "java-home",
             'java.version': "1.${version}.0_66",
             'java.vendor': "Hewlett-Packard Co.",
             'os.arch': "ia64",
             'java.vm.name': "Java HotSpot(TM) 64-Bit Server VM",
             'java.vm.version': "25.66-b17",
             'java.vm.vendor': "Hewlett-Packard Co.",
             'java.runtime.name': "Java(TM) SE Runtime Environment",
             'java.runtime.version': "1.${version}.0_66-b08"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. docs/bucket/replication/DESIGN.md

    All replication failures are picked up by the scanner which runs at a one minute frequency, each time scanning upto a sixteenth of the namespace. Object versions marked `PENDING` or `FAILED` are re-queued for replication.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  7. subprojects/build-events/src/main/java/org/gradle/internal/build/event/DefaultBuildEventsListenerRegistry.java

            protected void queue(T message) {
                if (failure.get() == null) {
                    events.add(message);
                }
                // else, the handler thread is no longer handling messages so discard it
            }
    
            @Override
            public void close() {
                events.add(END);
                executor.stop(60, TimeUnit.SECONDS);
                Exception failure = this.failure.get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:34:01 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. cmd/metacache-entries.go

    					if other.isDir() {
    						if serverDebugLog {
    							console.Debugln("mergeEntryChannels: discarding directory", other.name, "for object", best.name)
    						}
    						// Discard the directory.
    						if err := selectFrom(otherIdx); err != nil {
    							return err
    						}
    						continue
    					}
    					// Replace directory with object.
    					if serverDebugLog {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

                try {
                    if (done) {
                        // Already calculated
                        return;
                    }
                    done = true;
    
                    // Attach result and discard calculation state
                    owner.result = Try.ofFailable(() -> {
                        NodeExecutionContext effectiveContext = context;
                        if (effectiveContext == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. internal/etag/etag_test.go

    	},
    }
    
    func TestReader(t *testing.T) {
    	for i, test := range readerTests {
    		reader := NewReader(context.Background(), strings.NewReader(test.Content), test.ETag, nil)
    		if _, err := io.Copy(io.Discard, reader); err != nil {
    			t.Fatalf("Test %d: read failed: %v", i, err)
    		}
    		if ETag := reader.ETag(); !Equal(ETag, test.ETag) {
    			t.Fatalf("Test %d: ETag mismatch: got %q - want %q", i, ETag, test.ETag)
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top