Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for unserved (0.16 sec)

  1. tests/integration/ambient/baseline_test.go

    				HBONE:   hbwl,
    				Check:   check.OK(),
    			})
    			run("Unserved VIP destination", echo.CallOptions{
    				To:      apps.Captured,
    				Count:   1,
    				Address: apps.Captured[0].Address(),
    				Port:    echo.Port{ServicePort: ports.HTTP.ServicePort},
    				Scheme:  scheme.HTTP,
    				HBONE:   hbsvc,
    				Check:   check.Error(),
    			})
    			run("Unserved pod destination", echo.CallOptions{
    				To:      apps.Captured,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	}
    
    	if !apiextensionshelpers.HasServedCRDVersion(crd, requestInfo.APIVersion) {
    		r.delegate.ServeHTTP(w, req)
    		return
    	}
    
    	// There is a small chance that a CRD is being served because NamesAccepted condition is true,
    	// but it becomes "unserved" because another names update leads to a conflict
    	// and EstablishingController wasn't fast enough to put the CRD into the Established condition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/poms/validation/reserved-repository-id.xml

    Benjamin Bentmann <******@****.***> 1269989581 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Mar 30 22:53:01 UTC 2010
    - 1.4K bytes
    - Viewed (0)
  4. pkg/util/flag/flags_test.go

    						v1.ResourceMemory:        memory1Gi,
    						resourceNameHugepages1Gi: memory1Gi,
    					},
    				},
    			},
    		},
    		{
    			desc: "valid input with multiple reserved-memory arguments",
    			argc: "blah --reserved-memory=0:memory=1Gi,hugepages-1Gi=1Gi --reserved-memory=1:memory=1Gi",
    			expectVal: []kubeletconfig.MemoryReservation{
    				{
    					NumaNode: 0,
    					Limits: v1.ResourceList{
    						v1.ResourceMemory:        memory1Gi,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 14 10:45:23 UTC 2021
    - 8.8K bytes
    - Viewed (0)
  5. src/runtime/trace2map_test.go

    			"bb",
    		}
    		for i, s := range d {
    			id, inserted := m.PutString(s)
    			if !inserted {
    				t.Errorf("expected to have inserted string %q, but did not", s)
    			}
    			if id != uint64(i+1) {
    				t.Errorf("expected string %q to have ID %d, but got %d instead", s, i+1, id)
    			}
    		}
    		for i, s := range d {
    			id, inserted := m.PutString(s)
    			if inserted {
    				t.Errorf("inserted string %q, but expected to have not done so", s)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 18:52:49 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/dot_general.h

    // be inserted to convert to well-formed matrix multiply; i.e., mhlo.dot_general
    // -> tfl.batch_matmul(mhlo.transpose(mhlo.reshape(operand)), ...).
    // Note:
    // 1) Reshape/transpose are inserted because tfl.BatchMatMul requires
    // size(contracting_dimensions) = 1 and size(output_dim) = 1, whereas
    // mhlo.dot_general has no such restriction.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 04 19:00:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. src/internal/runtime/atomic/types_64bit.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build amd64 || arm64 || loong64 || mips64 || mips64le || ppc64 || ppc64le || riscv64 || s390x || wasm
    
    package atomic
    
    // LoadAcquire is a partially unsynchronized version
    // of Load that relaxes ordering constraints. Other threads
    // may observe operations that precede this operation to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. src/sort/example_test.go

    	fmt.Println(sort.IntsAreSorted(s))
    
    	s = []int{3, 2, 4, 1, 5} // unsorted
    	fmt.Println(sort.IntsAreSorted(s))
    
    	// Output: true
    	// false
    	// false
    }
    
    func ExampleFloat64s() {
    	s := []float64{5.2, -1.3, 0.7, -3.8, 2.6} // unsorted
    	sort.Float64s(s)
    	fmt.Println(s)
    
    	s = []float64{math.Inf(1), math.NaN(), math.Inf(-1), 0.0} // unsorted
    	sort.Float64s(s)
    	fmt.Println(s)
    
    	// Output: [-3.8 -1.3 0.7 2.6 5.2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:29:29 UTC 2017
    - 2.8K bytes
    - Viewed (0)
  9. test/fixedbugs/issue25516.go

    // compile
    
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Make sure dead write barriers are handled correctly.
    
    package main
    
    func f(p **int) {
    	// The trick here is to eliminate the block containing the write barrier,
    	// but only after the write barrier branches are inserted.
    	// This requires some delicate code.
    	i := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 29 17:45:36 UTC 2018
    - 558 bytes
    - Viewed (0)
  10. src/sort/example_search_test.go

    	fmt.Printf("found %g at index %d in %v\n", x, i, a)
    
    	x = 0.5
    	i = sort.SearchFloat64s(a, x)
    	fmt.Printf("%g not found, can be inserted at index %d in %v\n", x, i, a)
    	// Output:
    	// found 2 at index 1 in [1 2 3.3 4.6 6.1 7.2 8]
    	// 0.5 not found, can be inserted at index 0 in [1 2 3.3 4.6 6.1 7.2 8]
    }
    
    // This example demonstrates searching for int in a list sorted in ascending order.
    func ExampleSearchInts() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 18 08:25:24 UTC 2021
    - 2.1K bytes
    - Viewed (0)
Back to top