Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 198 for thereby (0.14 sec)

  1. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    }
    
    // Populates desiredStateOfWorld cache with one node/volume/pod tuple.
    // Calls Run()
    // Verifies there is one attach call and no detach calls.
    // Marks the node/volume as unmounted.
    // Deletes the node/volume/pod tuple from desiredStateOfWorld cache.
    // Verifies there is one detach call and no (new) attach calls.
    func Test_Run_Positive_OneDesiredVolumeAttachThenDetachWithUnmountedVolume(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// Updates filesystem configuration with options passed in `options`. It can
      /// contain full set of options supported by the filesystem or just a subset
      /// of them. Ownership of options and buffers therein belongs to the caller
      /// and any buffers need to be allocated through filesystem allocation API.
      /// Filesystems may choose to ignore configuration errors but should at least
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  3. src/runtime/asm_amd64.s

    	// through a wrapper, but otherwise avoid setting the G
    	// register in the wrapper and call needm directly. It
    	// takes no arguments and doesn't return any values so
    	// there's no need to handle that. Clear R14 so that there's
    	// a bad value in there, in case needm tries to use it.
    	XORPS	X15, X15
    	XORQ    R14, R14
    	MOVQ	$runtime·needAndBindM<ABIInternal>(SB), AX
    	CALL	AX
    	MOVQ	$0, savedm-8(SP)
    	get_tls(CX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    	// Handle tasks. Tasks are interesting because:
    	// - There's no Begin event required to reference a task.
    	// - End for a particular task ID can appear multiple times.
    	// As a result, there's very little to validate. The only
    	// thing we have to be sure of is that a task didn't begin
    	// after it had already begun. Task IDs are allowed to be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

        }
    
        def "mentions that there are no variants when there are none"() {
            given:
            createDirs("a", "b")
            file('settings.gradle') << "include 'a', 'b'"
            buildFile << """
                $typeDefs
    
                project(':a') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    	// 'go get' is expected to do this, unlike other commands.
    	modload.AllowMissingModuleImports()
    
    	// 'go get' no longer builds or installs packages, so there's nothing to do
    	// if there's no go.mod file.
    	// TODO(#40775): make modload.Init return ErrNoModRoot instead of exiting.
    	// We could handle that here by printing a different message.
    	modload.Init()
    	if !modload.HasModRoot() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    						myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    							"restricted": map[string]interface{}{
    								"key1": "hi",
    								"key2": "theres",
    								"key3": "buddy",
    							},
    						}}},
    			},
    		},
    		{
    			Name: "MinItems",
    			Operations: []ratchetingTestOperation{
    				updateMyCRDV1Beta1Schema{&apiextensionsv1.JSONSchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    	// that Go needs to do anyway, so the generated code is quite
    	// short.
    	ri := arenaIndex(p)
    	if arenaL1Bits == 0 {
    		// If there's no L1, then ri.l1() can't be out of bounds but ri.l2() can.
    		if ri.l2() >= uint(len(mheap_.arenas[0])) {
    			return nil
    		}
    	} else {
    		// If there's an L1, then ri.l1() can be out of bounds but ri.l2() can't.
    		if ri.l1() >= uint(len(mheap_.arenas)) {
    			return nil
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    // sub-symbols in that section. Note that for some sections (eg:
    // .debug_abbrev), the section symbol is all there is (all content is
    // contained in it). For other sections (eg: .debug_info), the section
    // symbol is empty and all the content is in the sub-symbols. Finally
    // there are some sections (eg: .debug_ranges) where it is a mix (both
    // the section symbol and the sub-symbols have content)
    type dwarfSecInfo struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. src/runtime/map.go

    // See also tooManyOverflowBuckets.
    // To keep hmap small, noverflow is a uint16.
    // When there are few buckets, noverflow is an exact count.
    // When there are many buckets, noverflow is an approximate count.
    func (h *hmap) incrnoverflow() {
    	// We trigger same-size map growth if there are
    	// as many overflow buckets as buckets.
    	// We need to be able to count to 1<<h.B.
    	if h.B < 16 {
    		h.noverflow++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top