Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,769 for indirectly (0.18 sec)

  1. src/go/types/infer.go

    	}
    	return nil, false
    }
    
    // killCycles walks through the given type parameters and looks for cycles
    // created by type parameters whose inferred types refer back to that type
    // parameter, either directly or indirectly. If such a cycle is detected,
    // it is killed by setting the corresponding inferred type to nil.
    //
    // TODO(gri) Determine if we can simply abort inference as soon as we have
    // found a single cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  2. src/time/format_test.go

    	// the exact detection of format chunk boundaries in the
    	// helper function nextStdChunk (here called as NextStdChunk).
    	// This test checks nextStdChunk's behavior directly,
    	// instead of needing to test it only indirectly through Parse/Format.
    
    	// markChunks returns format with each detected
    	// 'format chunk' parenthesized.
    	// For example showChunks("2006-01-02") == "(2006)-(01)-(02)".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    [[config_cache:requirements:shared_objects]]
    === Sharing mutable objects
    When storing a task to the configuration cache, all objects directly or indirectly referenced through the task's fields are serialized.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. src/runtime/mstats.go

    	//
    	// StackSys is StackInuse, plus any memory obtained directly
    	// from the OS for OS thread stacks.
    	//
    	// In non-cgo programs this metric is currently equal to StackInuse
    	// (but this should not be relied upon, and the value may change in
    	// the future).
    	//
    	// In cgo programs this metric includes OS thread stacks allocated
    	// directly from the OS. Currently, this only accounts for one stack in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/list/list.go

            Time       *time.Time    // time version was created
            Update     *Module       // available update (with -u)
            Main       bool          // is this the main module?
            Indirect   bool          // module is only indirectly needed by main module
            Dir        string        // directory holding local copy of files, if any
            GoMod      string        // path to go.mod file describing module, if any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            expect:
            succeeds 'broken'
        }
    
        @Issue("https://github.com/gradle/configuration-cache/issues/97")
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "does nag when service is used indirectly via another service even if task declares service reference and feature preview is enabled"() {
            given:
            serviceImplementation()
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Synchronized.java

     * a lot of busy work, and the annotation matters only when the APIs to be annotated are visible to
     * Kotlin code. In this class, nothing is publicly visible (nor exposed indirectly through a
     * publicly visible subclass), and I doubt any of our current or future Kotlin extensions for the
     * package will refer to the class. Plus, @ParametricNullness is only a temporary workaround,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Synchronized.java

     * a lot of busy work, and the annotation matters only when the APIs to be annotated are visible to
     * Kotlin code. In this class, nothing is publicly visible (nor exposed indirectly through a
     * publicly visible subclass), and I doubt any of our current or future Kotlin extensions for the
     * package will refer to the class. Plus, @ParametricNullness is only a temporary workaround,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/type.go

    		base.Fatalf("bad type for map key: %v", t)
    		return false
    	}
    }
    
    // Can this type be stored directly in an interface word?
    // Yes, if the representation is a single pointer.
    func IsDirectIface(t *Type) bool {
    	switch t.Kind() {
    	case TPTR:
    		// Pointers to notinheap types must be stored indirectly. See issue 42076.
    		return !t.Elem().NotInHeap()
    	case TCHAN,
    		TMAP,
    		TFUNC,
    		TUNSAFEPTR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ppc64/asm.go

    	} else {
    		o1 = uint32(val)
    		o2 = uint32(val >> 32)
    	}
    
    	// On AIX, TOC data accesses are always made indirectly against R2 (a sequence of addis+ld+load/store). If the
    	// The target of the load is known, the sequence can be written into addis+addi+load/store. On Linux,
    	// TOC data accesses are always made directly against R2 (e.g addis+load/store).
    	if target.IsAIX() {
    		if !strings.HasPrefix(ldr.SymName(rs), "TOC.") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
Back to top