Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 292 for shame (0.26 sec)

  1. .bazelrc

    build:rbe_linux --linkopt=-lrt
    build:rbe_linux --host_linkopt=-lrt
    build:rbe_linux --linkopt=-lm
    build:rbe_linux --host_linkopt=-lm
    
    build:rbe_linux_cpu --config=rbe_linux
    # Linux cpu and cuda builds share the same toolchain now.
    build:rbe_linux_cpu --host_crosstool_top="@sigbuild-r2.17-clang_config_cuda//crosstool:toolchain"
    build:rbe_linux_cpu --crosstool_top="@sigbuild-r2.17-clang_config_cuda//crosstool:toolchain"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    	if add2Err != nil {
    		t.Fatalf("AddVolumeNode failed. Expected: <no error> Actual: <%v>", add2Err)
    	}
    
    	if generatedVolumeName != generatedVolumeName2 {
    		t.Fatalf(
    			"Generated volume names for the same volume should be the same but they are not: %q and %q",
    			generatedVolumeName,
    			generatedVolumeName2)
    	}
    
    	volumeNodeComboState = asw.GetAttachState(generatedVolumeName, nodeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_test.cc

        // .device of shape is GPU since the op is executed on GPU
        device_name = TFE_TensorHandleDeviceName(retvals[0], status.get());
        ASSERT_EQ(TF_OK, TF_GetCode(status.get())) << TF_Message(status.get());
        ASSERT_TRUE(absl::StrContains(device_name, "GPU:0")) << device_name;
    
        // .backing_device of shape is CPU since the tensor is backed by CPU
        backing_device_name =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    	// TCP listeners that conflicted with existing TCP listeners on same port
    	ProxyStatusConflictOutboundListenerTCPOverTCP = monitoring.NewGauge(
    		"pilot_conflict_outbound_listener_tcp_over_current_tcp",
    		"Number of conflicting tcp listeners with current tcp listener.",
    	)
    
    	// ProxyStatusConflictInboundListener tracks cases of multiple inbound
    	// listeners - 2 services selecting the same port of the pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    			Address: "6.6.6.6",
    			Labels:  map[string]string{"other": "bar"},
    		})
    		return &c
    	}()
    	// httpStaticOverlayUpdatedInstance is the same as httpStaticOverlayUpdated but with an extra endpoint added that has the same address
    	httpStaticOverlayUpdatedInstance := func() *config.Config {
    		c := httpStaticOverlayUpdated.DeepCopy()
    		se := c.Spec.(*networking.ServiceEntry)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    // This feature is currently implemented in watch cache layer, so this is optional.
    //
    // TODO(#109831): ProgressNotify feature is effectively implementing the same
    //
    //	functionality, so we should refactor this functionality to share the same input.
    func RunTestWatchDispatchBookmarkEvents(ctx context.Context, t *testing.T, store storage.Interface, expectedWatchBookmarks bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            if (availableClassifiers.map { it.scope }.hasScopeCloserThan(scopeForClass, element)) return false
    
            /**
             * If we have a property with the same name, avoid dropping qualifiers makes it reference a property with the same name e.g.,
             *    package my.component
             *    class foo { .. }  // A
             *    ..
             *    fun test() {
             *      val foo = ..    // B
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  8. src/index/suffixarray/sais2.go

    				}
    			}
    			goto Same
    		}
    	New:
    		id++
    		lastPos = j
    		lastLen = n
    	Same:
    		sa[j/2] = int32(id)
    	}
    	return id
    }
    
    func assignID_64(text []int64, sa []int64, numLMS int) int {
    	id := 0
    	lastLen := int64(-1) // impossible
    	lastPos := int64(0)
    	for _, j := range sa[len(sa)-numLMS:] {
    		// Is the LMS-substring at index j new, or is it the same as the last one we saw?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    // the symbol first class sym (participating in the link) or is an
    // anonymous aux or sub-symbol containing some sub-part or payload of
    // another symbol.
    func topLevelSym(sname string, skind sym.SymKind) bool {
    	if sname != "" {
    		return true
    	}
    	switch skind {
    	case sym.SDWARFFCN, sym.SDWARFABSFCN, sym.SDWARFTYPE, sym.SDWARFCONST, sym.SDWARFCUINFO, sym.SDWARFRANGE, sym.SDWARFLOC, sym.SDWARFLINES, sym.SGOFUNC:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/type.go

    var (
    	typepkgmu sync.Mutex // protects typepkg lookups
    	typepkg   = NewPkg("type", "type")
    )
    
    var SimType [NTYPE]Kind
    
    // Fake package for shape types (see typecheck.Shapify()).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top