Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 129 for Forked (0.13 sec)

  1. plugin/pkg/admission/limitranger/admission_test.go

    	if err != nil {
    		t.Errorf("LimitRange should ignore a pod marked for termination")
    	}
    }
    
    // newMockClientForTest creates a mock client that returns a client configured for the specified list of limit ranges
    func newMockClientForTest(limitRanges []corev1.LimitRange) *fake.Clientset {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Sets.java

          int expectedSize) {
        return new LinkedHashSet<>(Maps.capacity(expectedSize));
      }
    
      // TreeSet
    
      /**
       * Creates a <i>mutable</i>, empty {@code TreeSet} instance sorted by the natural sort ordering of
       * its elements.
       *
       * <p><b>Note:</b> if mutability is not required, use {@link ImmutableSortedSet#of()} instead.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    	lsDwsym := dwSym(lineProlog)
    	newattr(unit.DWInfo, dwarf.DW_AT_stmt_list, dwarf.DW_CLS_PTR, 0, lsDwsym)
    
    	// Write .debug_line Line Number Program Header (sec 6.2.4)
    	// Fields marked with (*) must be changed for 64-bit dwarf
    	unitLengthOffset := lsu.Size()
    	d.createUnitLength(lsu, 0) // unit_length (*), filled in at end
    	unitstart = lsu.Size()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.h

    //  arguments are as follows:
    //
    //    ncontrol_outputs: Number of control outputs of the function.
    //    control_outputs: vector of TF_Operation objects to be marked as control
    //      outputs of the function. Operations marked as control outputs are
    //      guaranteed to execute.
    //    control_output_names: Optional. If not nullptr, vector of strings, one
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Since the artifact view was created before the attributes were added to the configuration, Gradle was not able to select the correct artifact.
    
    Some builds may have worked around this by also putting the additional attributes into the artifact view. This is no longer necessary.
    
    [[kotlin_1_9.0]]
    ==== Upgrade to Kotlin 1.9.0
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    	q := QuantityValue{}
    
    	if err := q.Set("invalid"); err == nil {
    
    		t.Error("'invalid' did not trigger a parse error")
    	}
    
    	if err := q.Set("1Mi"); err != nil {
    		t.Errorf("parsing 1Mi should have worked, got: %v", err)
    	}
    	if q.Value() != 1024*1024 {
    		t.Errorf("quantity should have been set to 1Mi, got: %v", q)
    	}
    
    	data, err := json.Marshal(q)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// events have been sent, a synthetic "Bookmark" event  will be sent.
    	// The bookmark will report the ResourceVersion (RV) corresponding to the
    	// set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation.
    	// Afterwards, the watch stream will proceed as usual, sending watch events
    	// corresponding to changes (subsequent to the RV) to objects watched.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  8. pilot/pkg/networking/core/route/route.go

    	matchingRegistryServices := make([]*model.Service, 0)
    	wchosts := make([]host.Name, 0)
    
    	// As a performance optimization, process non wildcard hosts first, so that they can be
    	// looked up directly in the service registry map.
    	for _, hostname := range rule.Hosts {
    		vshost := host.Name(hostname)
    		if vshost.IsWildCarded() {
    			// We'll process wild card hosts later
    			wchosts = append(wchosts, vshost)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal_test.go

    		Kind:  reflect.Map,
    	},
    	{
    		Value: &Domain{Comment: []byte("f--bar")},
    		Err:   `xml: comments must not contain "--"`,
    	},
    	// Reject parent chain with attr, never worked; see golang.org/issue/5033.
    	{
    		Value: &AttrParent{},
    		Err:   `xml: X>Y chain not valid with attr flag`,
    	},
    	{
    		Value: BadAttr{map[string]string{"X": "Y"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  10. src/net/http/httputil/reverseproxy_test.go

    		backURL, _ := url.Parse(backend.URL)
    		rp := NewSingleHostReverseProxy(backURL)
    		r := req(t, "GET / HTTP/1.0\r\n\r\n")
    		r.Body = nil // this accidentally worked in Go 1.4 and below, so keep it working
    		rp.ServeHTTP(w, r)
    	}))
    	defer frontend.Close()
    
    	res, err := http.Get(frontend.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer res.Body.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top