Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 99 of 99 for Tconstants (0.31 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    * Changes to private class elements, such as private fields, methods and inner classes.
    * Changes to code, such as method bodies, static initializers and field initializers (except for constants).
    * Changes to debug information, for example when a change to a comment affects the line numbers in class debug information.
    * Changes to directories, including directory entries in Jars.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Sets.java

       * is merely copied. Only as the power set is iterated are the individual subsets created, and
       * these subsets themselves occupy only a small constant amount of memory.
       *
       * @param set the set of elements to construct a power set from
       * @return the power set, as an immutable set of immutable sets
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    // (this mark is computed by the gcController.heapGoal method). This keeps the GC cost in
    // linear proportion to the allocation cost. Adjusting GOGC just changes the linear constant
    // (and also the amount of extra memory used).
    
    // Oblets
    //
    // In order to prevent long pauses while scanning large objects and to
    // improve parallelism, the garbage collector breaks up scan jobs for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// should not rely on the remainingItemCount to be set or to be exact.
    	// +optional
    	RemainingItemCount *int64 `json:"remainingItemCount,omitempty" protobuf:"bytes,4,opt,name=remainingItemCount"`
    }
    
    // Field path constants that are specific to the internal API
    // representation.
    const (
    	ObjectNameField = "metadata.name"
    )
    
    // These are internal finalizer values for Kubernetes-like APIs, must be qualified name unless defined here
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  5. cmd/sts-handlers_test.go

    	// 3. Check S3 access
    	c.assertSvcAccS3Access(ctx, s, cr, bucket)
    
    	// 5. Check that service account can be deleted.
    	c.assertSvcAccDeletion(ctx, s, userAdmClient, value.AccessKeyID, bucket)
    }
    
    // Constants for Policy Variables test.
    var (
    	policyProjectA = `{
        "Version": "2012-10-17",
        "Statement": [
            {
                "Effect": "Allow",
                "Action": [
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  6. src/go/parser/parser.go

    			// with a "[" as in: P []E. In that case, simply parsing
    			// an expression would lead to an error: P[] is invalid.
    			// But since index or slice expressions are never constant
    			// and thus invalid array length expressions, if the name
    			// is followed by "[" it must be the start of an array or
    			// slice constraint. Only if we don't see a "[" do we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    			argv = append(argv, "-Wl,-z,nobtcfi")
    		}
    		if ctxt.Arch.InFamily(sys.ARM64) {
    			// Disable execute-only on openbsd/arm64 - the Go arm64 assembler
    			// currently stores constants in the text section rather than in rodata.
    			// See issue #59615.
    			argv = append(argv, "-Wl,--no-execute-only")
    		}
    	case objabi.Hwindows:
    		if windowsgui {
    			argv = append(argv, "-mwindows")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. src/reflect/type.go

    // assigned (using memmove) to a value of type T.
    // https://golang.org/doc/go_spec.html#Assignability
    // Ignoring the interface rules (implemented elsewhere)
    // and the ideal constant rules (no ideal constants at run time).
    func directlyAssignable(T, V *abi.Type) bool {
    	// x's type V is identical to T?
    	if T == V {
    		return true
    	}
    
    	// Otherwise at least one of T and V must not be defined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/regalloc.go

    					v.Op = OpVarLive
    					v.SetArgs1(v.Args[1])
    					v.Aux = a.Aux
    				} else {
    					// In-register and rematerializeable values are already live.
    					// These are typically rematerializeable constants like nil,
    					// or values of a variable that were modified since the last call.
    					v.Op = OpCopy
    					v.SetArgs1(v.Args[1])
    				}
    				b.Values = append(b.Values, v)
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top