Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 86 for darkred (0.18 sec)

  1. pkg/controller/endpointslice/endpointslice_controller_test.go

    	numActionsBefore := len(client.Actions())
    	err = esController.syncService(logger, fmt.Sprintf("%s/%s", ns, serviceName))
    	assert.Nil(t, err, "Expected no error syncing service")
    
    	// The EndpointSlice marked for deletion should be ignored by the controller, and thus
    	// should not result in any action.
    	if len(client.Actions()) != numActionsBefore {
    		t.Errorf("Expected 0 more actions, got %d", len(client.Actions())-numActionsBefore)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  2. src/testing/testing.go

    		panic(fmt.Sprintf("testing: f.%s was called inside the fuzz target, use t.%s instead", name, name))
    	}
    }
    
    // frameSkip searches, starting after skip frames, for the first caller frame
    // in a function not marked as a helper and returns that frame.
    // The search stops if it finds a tRunner function that
    // was the entry point into the test and the test is not a subtest.
    // This function must be called with c.mu held.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. src/crypto/tls/tls_test.go

    	}
    
    	// Check that disabled suites are marked insecure.
    	for _, badSuites := range []map[uint16]bool{disabledCipherSuites, rsaKexCiphers} {
    		for id := range badSuites {
    			c := CipherSuiteByID(id)
    			if c == nil {
    				t.Errorf("%#04x: no CipherSuite entry", id)
    				continue
    			}
    			if !c.Insecure {
    				t.Errorf("%#04x: disabled by default but not marked insecure", id)
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    	stw := stopTheWorld(stwGoroutineProfile)
    	// Using gcount while the world is stopped should give us a consistent view
    	// of the number of live goroutines, minus the number of goroutines that are
    	// alive and permanently marked as "system". But to make this count agree
    	// with what we'd get from isSystemGoroutine, we need special handling for
    	// goroutines that can vary between user and system to ensure that the count
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    synthetic events to produce the current state of objects in the collection. Once all such 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.\n\nWhen `sendInitialEvents` option is set, we require...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2.go

    	return fi, err
    }
    
    // ListVersions lists current versions, and current deleted
    // versions returns error for unexpected entries.
    // showPendingDeletes is set to true if ListVersions needs to list objects marked deleted
    // but waiting to be replicated
    func (x xlMetaV2) ListVersions(volume, path string, allParts bool) ([]FileInfo, error) {
    	versions := make([]FileInfo, 0, len(x.versions))
    	var err error
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	waitForAttachedToNodesCount(t, 1 /* expectedNodeCount */, generatedVolumeName, asw)
    
    	nodesForVolume := asw.GetNodesForAttachedVolume(generatedVolumeName)
    
    	// check if multiattach is marked
    	// at least one volume+node should be marked with multiattach error
    	nodeAttachedTo := nodesForVolume[0]
    	waitForMultiAttachErrorOnNode(t, nodeAttachedTo, dsw)
    
    	// Act
    	podToDelete := ""
    	if nodesForVolume[0] == nodeName1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ==== Nullable annotations better reflect actual nullability of API
    
    In some APIs, nullability was not correctly annotated and APIs that did allow null or returned null were marked as non-null.
    In Java or Groovy, this mismatch did not cause problems at compile time.
    In Kotlin, this mismatch made valid code difficult to write because the language would not allow you to pass null.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        DumpGraphToFile("before_mark_for_compilation", *graph_, flib_def_);
      }
    
      // Mark clusters for compilation that:
      // * are placed on a device that requires compilation (an XlaDevice),
      // * are explicitly marked for compilation (_XlaCompile=true), or
      // * have more than debug_options_.xla_min_cluster_size elements (applicable
      //   only if compilation is enabled, otherwise there will be no such
      //   candidates).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers_test.go

    				pendingUpdate: &UpdatePodOptions{
    					UpdateType: kubetypes.SyncPodCreate,
    					Pod:        newPodWithPhase("1", "done-pod", v1.PodSucceeded),
    				},
    				finished:           false, // Should be marked as not finished initially (to ensure `SyncTerminatedPod` will run) and status will progress to terminated.
    				startedTerminating: true,
    				working:            true,
    			},
    			expect: hasContext(&podSyncStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
Back to top