Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 180 for indirectly (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		}), nil)
    	if err != nil {
    		t.Fatalf("GuaranteedUpdate failed: %v", err)
    	}
    
    	// Check that we receive a modified watch event. This check also
    	// indirectly ensures that the cache is synced. This is important
    	// when testing with the Cacher since we may have to allow for slow
    	// processing by allowing updates to propagate to the watch cache.
    	// This allows for that.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modget/get.go

    				retractions[i].message = err.Error()
    			}
    		})
    	}
    
    	// Load deprecations for modules mentioned on the command line. Only load
    	// deprecations for indirect dependencies if they're also direct dependencies
    	// of the main module. Deprecations of purely indirect dependencies are
    	// not actionable.
    	deprecations := make([]modMessage, 0, len(relevantMods))
    	for m, flags := range relevantMods {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    	s atomic.Uint8
    }
    
    // It is nosplit to match get, below.
    
    //go:nosplit
    func (b *mSpanStateBox) set(s mSpanState) {
    	b.s.Store(uint8(s))
    }
    
    // It is nosplit because it's called indirectly by typedmemclr,
    // which must not be preempted.
    
    //go:nosplit
    func (b *mSpanStateBox) get() mSpanState {
    	return mSpanState(b.s.Load())
    }
    
    // mSpanList heads a linked list of spans.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    In Gradle 8.0, `java-base` handles this configuration.
    No changes are required for projects that already apply the
    `java-base` plugin directly or indirectly through the `java`, `application`, `java-library`, or other JVM ecosystem plugins.
    
    ==== Upload Task should not be used
    
    The `Upload` task remains deprecated and is now scheduled for removal in Gradle 9.0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    	direct["go"] = true // Every module directly uses the language and runtime.
    
    	if toolchain != "" {
    		roots = append(roots, module.Version{Path: "toolchain", Version: toolchain})
    		// Leave the toolchain as indirect: nothing in the user's module directly
    		// imports a package from the toolchain, and (like an indirect dependency in
    		// a module without graph pruning) we may remove the toolchain line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. src/runtime/map.go

    				}
    				continue
    			}
    			k := add(unsafe.Pointer(b), dataOffset+i*uintptr(t.KeySize))
    			k2 := k
    			if t.IndirectKey() {
    				k2 = *((*unsafe.Pointer)(k2))
    			}
    			if !t.Key.Equal(key, k2) {
    				continue
    			}
    			// Only clear key if there are pointers in it.
    			if t.IndirectKey() {
    				*(*unsafe.Pointer)(k) = nil
    			} else if t.Key.Pointers() {
    				memclrHasPointers(k, t.Key.Size_)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    //
    //   - If ld scanned the "all" pattern independent of build constraints, it is
    //     guaranteed to have seen every direct import. Module dependencies that did
    //     not provide any directly-imported package are then marked as indirect.
    //
    //   - Root dependencies are updated to their selected versions.
    //
    // The "changed" return value reports whether the update changed the selected
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. src/runtime/asm_amd64.s

    	// thrown in the cgo call. Exceptions that reach this function will be
    	// handled by runtime.sehtramp thanks to the SEH metadata added
    	// by the compiler.
    	// Note that runtime.sehtramp can't be attached directly to asmcgocall
    	// because its initial stack pointer can be outside the system stack bounds,
    	// and Windows stops the stack unwinding without calling the exception handler
    	// when it reaches that point.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Sets.java

       *
       * <p>The specified map must be empty at the time this method is invoked, and should not be
       * accessed directly after this method returns. These conditions are ensured if the map is created
       * empty, passed directly to this method, and no reference to the map is retained, as illustrated
       * in the following code fragment:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Sets.java

       *
       * <p>The specified map must be empty at the time this method is invoked, and should not be
       * accessed directly after this method returns. These conditions are ensured if the map is created
       * empty, passed directly to this method, and no reference to the map is retained, as illustrated
       * in the following code fragment:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
Back to top