Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for picard (0.39 sec)

  1. cmd/peer-rest-server.go

    	for m := range re {
    		if err := enc.Encode(m); err != nil {
    			s.writeErrorResponse(w, errors.New("Encoding mrf failed: "+err.Error()))
    			return
    		}
    	}
    }
    
    // DevNull - everything goes to io.Discard
    func (s *peerRESTServer) DevNull(w http.ResponseWriter, r *http.Request) {
    	if !s.IsValid(w, r) {
    		s.writeErrorResponse(w, errors.New("invalid request"))
    		return
    	}
    
    	globalNetPerfRX.Connect()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. internal/bucket/lifecycle/lifecycle_test.go

    	}
    
    	event := lc.eval(opts, time.Time{})
    	if event.Action != TransitionAction {
    		t.Fatalf("Expected %v action but got %v", TransitionAction, event.Action)
    	}
    	// The earlier upcoming lifecycle event must be picked, i.e rule with id "Transition-10"
    	if exp := ExpectedExpiryTime(opts.ModTime, 10); exp != event.Due {
    		t.Fatalf("Expected due %v but got %v, ruleID=%v", exp, event.Due, event.RuleID)
    	}
    
    	// DelMarkerExpiration
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			},
    			expected: []string{"node1", "node2"},
    		},
    		{
    			name:           "node with min highest priority pod is picked",
    			registerPlugin: tf.RegisterPluginAsExtensions(noderesources.Name, nodeResourcesFitFunc, "Filter", "PreFilter"),
    			nodeNames:      []string{"node1", "node2", "node3"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            runActionInHierarchy(conf -> {
                conf.defaultDependencyActions.execute(conf.dependencies);
                conf.withDependencyActions.execute(conf.dependencies);
    
                // Discard actions after execution
                conf.defaultDependencyActions = ImmutableActionSet.empty();
                conf.withDependencyActions = ImmutableActionSet.empty();
            });
        }
    
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	if err := level.Set("6"); err != nil {
    		t.Fatal(err)
    	}
    	t.Cleanup(func() {
    		klog.LogToStderr(true)
    		if err := level.Set("0"); err != nil {
    			t.Fatal(err)
    		}
    		klog.SetOutput(io.Discard)
    	})
    
    	tests := []struct {
    		name             string
    		service          *testKMSv2EnvelopeService
    		state            envelopekmsv2.State
    		useSeed          bool
    		statusKeyID      string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  6. src/net/http/fs_test.go

    			}
    			for k, v := range tt.reqHeader {
    				req.Header.Set(k, v)
    			}
    
    			c := ts.Client()
    			res, err := c.Do(req)
    			if err != nil {
    				t.Fatal(err)
    			}
    			io.Copy(io.Discard, res.Body)
    			res.Body.Close()
    			if res.StatusCode != tt.wantStatus {
    				t.Errorf("test %q using %q: got status = %d; want %d", testName, method, res.StatusCode, tt.wantStatus)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    //
    // The algorithm decomposes into several steps.
    // This is a high level description of the algorithm being used. For an overview of GC a good
    // place to start is Richard Jones' gchandbook.org.
    //
    // The algorithm's intellectual heritage includes Dijkstra's on-the-fly algorithm, see
    // Edsger W. Dijkstra, Leslie Lamport, A. J. Martin, C. S. Scholten, and E. F. M. Steffens. 1978.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. src/os/os_test.go

    	"slices"
    	"strings"
    	"sync"
    	"syscall"
    	"testing"
    	"testing/fstest"
    	"time"
    )
    
    func TestMain(m *testing.M) {
    	if Getenv("GO_OS_TEST_DRAIN_STDIN") == "1" {
    		Stdout.Close()
    		io.Copy(io.Discard, Stdin)
    		Exit(0)
    	}
    
    	log.SetFlags(log.LstdFlags | log.Lshortfile)
    
    	Exit(m.Run())
    }
    
    var dot = []string{
    	"dir_unix.go",
    	"env.go",
    	"error.go",
    	"file.go",
    	"os_test.go",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  9. cmd/test-utils_test.go

    		config.EnvRootPassword,
    	} {
    		os.Unsetenv(env)
    	}
    
    	// Set as non-distributed.
    	globalIsDistErasure = false
    
    	// Disable printing console messages during tests.
    	color.Output = io.Discard
    	// Disable Error logging in testing.
    	logger.DisableErrorLog = true
    
    	// Uncomment the following line to see trace logs during unit tests.
    	// logger.AddTarget(console.New())
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

    The value of this property is derived from: <source>""")
        }
    
        def "can set to null value to discard value"() {
            given:
            def property = property()
            property.set(someValue())
            property.set((Iterable) null)
    
            expect:
            !property.present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
Back to top