Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 343 for December (0.11 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    Thus, when making small incremental changes, the <<command_line_interface#sec:command_line_execution_options, `--no-rebuild` command-line option>> is often helpful to get faster feedback.
    Remember to run a full build regularly.
    ====
    
    == Declare properties in `gradle.properties` file
    
    In Gradle, properties can be defined in the build script, in a `gradle.properties` file or as parameters on the command line.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. pkg/kubelet/container/helpers.go

    			return false
    		}
    	}
    	return true
    }
    
    // HashContainer returns the hash of the container. It is used to compare
    // the running container with its desired spec.
    // Note: remember to update hashValues in container_hash_test.go as well.
    func HashContainer(container *v1.Container) uint64 {
    	hash := fnv.New32a()
    	containerJSON, _ := json.Marshal(pickFieldsToHash(container))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    32CA          ; mapped                 ; 0031 0031 6708 #1.1  IDEOGRAPHIC TELEGRAPH SYMBOL FOR NOVEMBER
    32CB          ; mapped                 ; 0031 0032 6708 #1.1  IDEOGRAPHIC TELEGRAPH SYMBOL FOR DECEMBER
    32CC          ; mapped                 ; 0068 0067     # 4.0  SQUARE HG
    32CD          ; mapped                 ; 0065 0072 0067 #4.0  SQUARE ERG
    32CE          ; mapped                 ; 0065 0076     # 4.0  SQUARE EV
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/instantiate.go

    	}
    
    	// Otherwise, V's type must be included in the iface type set.
    	var alt Type
    	if Ti.typeSet().is(func(t *term) bool {
    		if !t.includes(V) {
    			// If V ∉ t.typ but V ∈ ~t.typ then remember this type
    			// so we can suggest it as an alternative in the error
    			// message.
    			if alt == nil && !t.tilde && Identical(t.typ, under(t.typ)) {
    				tt := *t
    				tt.tilde = true
    				if tt.includes(V) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/stackalloc.go

    	// type equality, but also lets us match the same type represented
    	// by two different types.Type structures. See issue 65783.
    	locations := map[string][]LocalSlot{}
    
    	// Each time we assign a stack slot to a value v, we remember
    	// the slot we used via an index into locations[v.Type].
    	slots := f.Cache.allocIntSlice(f.NumValues())
    	defer f.Cache.freeIntSlice(slots)
    	for i := range slots {
    		slots[i] = -1
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. src/go/types/instantiate.go

    	}
    
    	// Otherwise, V's type must be included in the iface type set.
    	var alt Type
    	if Ti.typeSet().is(func(t *term) bool {
    		if !t.includes(V) {
    			// If V ∉ t.typ but V ∈ ~t.typ then remember this type
    			// so we can suggest it as an alternative in the error
    			// message.
    			if alt == nil && !t.tilde && Identical(t.typ, under(t.typ)) {
    				tt := *t
    				tt.tilde = true
    				if tt.includes(V) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. src/runtime/race_amd64.s

    racecallatomic_ignore:
    	// Addr is outside the good range.
    	// Call __tsan_go_ignore_sync_begin to ignore synchronization during the atomic op.
    	// An attempt to synchronize on the address would cause crash.
    	MOVQ	AX, BX	// remember the original function
    	MOVQ	$__tsan_go_ignore_sync_begin(SB), AX
    	MOVQ	g_racectx(R14), RARG0	// goroutine context
    	CALL	racecall<>(SB)
    	MOVQ	BX, AX	// restore the original function
    	// Call the atomic function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    	}
    	if len(src) == 0 {
    		return
    	}
    
    	// If we'd need to let the counter overflow and keep generating output,
    	// panic immediately. If instead we'd only reach the last block, remember
    	// not to generate any more output after the buffer is drained.
    	numBlocks := (uint64(len(src)) + blockSize - 1) / blockSize
    	if s.overflow || uint64(s.counter)+numBlocks > 1<<32 {
    		panic("chacha20: counter overflow")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  9. internal/etag/etag.go

    //
    // To put all of this into a simple rule:
    //
    //	SSE-S3 : ETag == MD5
    //	SSE-C  : ETag != MD5
    //	SSE-KMS: ETag != MD5
    //
    // # Encrypted ETags
    //
    // An S3 implementation has to remember the content MD5 of objects
    // in case of SSE-S3. However, storing the ETag of an encrypted
    // object in plaintext may reveal some information about the object.
    // For example, two objects with the same ETag are identical with
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    		newVersionedObject, err = o.GetObjectCreater().New(attr.VersionedKind)
    		if err != nil {
    			return false, apierrors.NewInternalError(err)
    		}
    	}
    
    	// TODO: if we have multiple mutating webhooks, we can remember the json
    	// instead of encoding and decoding for each one.
    	if newVersionedObject, _, err = jsonSerializer.Decode(patchedJS, nil, newVersionedObject); err != nil {
    		return false, apierrors.NewInternalError(err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top