Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,890 for unserved (0.4 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. 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)
  4. 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)
  5. 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)
  6. src/testing/testing_windows.go

    		unwrapped := errors.Unwrap(err)
    		if unwrapped == nil {
    			break
    		}
    		err = unwrapped
    	}
    	if err == syscall.ERROR_ACCESS_DENIED {
    		return true // Observed in https://go.dev/issue/50051.
    	}
    	if err == windows.ERROR_SHARING_VIOLATION {
    		return true // Observed in https://go.dev/issue/51442.
    	}
    	return false
    }
    
    // highPrecisionTime represents a single point in time with query performance counter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. src/internal/runtime/atomic/doc.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.
    
    /*
    Package atomic provides atomic operations, independent of sync/atomic,
    to the runtime.
    
    On most platforms, the compiler is aware of the functions defined
    in this package, and they're replaced with platform-specific intrinsics.
    On other platforms, generic implementations are made available.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 771 bytes
    - Viewed (0)
  8. src/crypto/internal/boring/bcache/cache.go

    	// we observed with a new k, v entry.
    	// If we win that race, we're done.
    	// Otherwise, we try the whole thing again,
    	// with two optimizations:
    	//
    	//  1. We track in noK the start of the section of
    	//     the list that we've confirmed has no entry for k.
    	//     The next time down the list, we can stop at noK,
    	//     because new entries are inserted at the front of the list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 00:30:19 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/deduplicate_bound_input_bindings.cc

        auto attr = func.getArgAttrOfType<FlatSymbolRefAttr>(
            i, "tf_saved_model.bound_input");
        if (!attr) continue;
        auto inserted = unique_bound_inputs.insert(std::make_pair(attr, i));
        if (inserted.second) continue;
        auto duplicate_arg = func.getArgument(i);
        auto original_arg = func.getArgument(unique_bound_inputs[attr]);
        duplicate_arg.replaceAllUsesWith(original_arg);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 04 09:25:35 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/testing_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package syntax
    
    import (
    	"fmt"
    	"regexp"
    	"strings"
    	"testing"
    )
    
    func TestCommentMap(t *testing.T) {
    	const src = `/* ERROR "0:0" */ /* ERROR "0:0" */ // ERROR "0:0"
    // ERROR "0:0"
    x /* ERROR "3:1" */                // ignore automatically inserted semicolon here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:53:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top