Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 704 for Mutated (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationCreationRequest.java

         *
         * This method will emit a detailed deprecation method with suggestions if the usage is inconsistent.  It will then attempt to mutate
         * the usage to match the expectation.  If the usage cannot be mutated, it will throw an exception.
         *
         * Does <strong>NOT</strong> check anything to do with deprecated usage.
         *
         * @param conf the existing configuration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 13:42:17 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/admission_test.go

    			managedFields.Manager = ""
    			return managedFields, false
    		},
    	}
    
    	for name, mutate := range managedFieldsMutators {
    		t.Run(name, func(t *testing.T) {
    			mutated, shouldReset := mutate(validManagedFieldsEntry)
    			validEntries := []metav1.ManagedFieldsEntry{validManagedFieldsEntry}
    			mutatedEntries := []metav1.ManagedFieldsEntry{mutated}
    
    			obj := &v1.ConfigMap{}
    			obj.SetManagedFields(validEntries)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 12 21:32:54 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/internal/fuzz/mutator.go

    			panic("data moved to new address")
    		}
    		*ptrB = b
    	}()
    
    	for {
    		mut := byteSliceMutators[m.rand(len(byteSliceMutators))]
    		if mutated := mut(m, b); mutated != nil {
    			b = mutated
    			return
    		}
    	}
    }
    
    var (
    	interesting8  = []int8{-128, -1, 0, 1, 16, 32, 64, 100, 127}
    	interesting16 = []int16{-32768, -129, 128, 255, 256, 512, 1000, 1024, 4096, 32767}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. src/runtime/security_aix.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    // secureMode is only ever mutated in schedinit, so we don't need to worry about
    // synchronization primitives.
    var secureMode bool
    
    func initSecureMode() {
    	secureMode = !(getuid() == geteuid() && getgid() == getegid())
    }
    
    func isSecureMode() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 449 bytes
    - Viewed (0)
  5. src/runtime/security_issetugid.go

    // license that can be found in the LICENSE file.
    
    //go:build darwin || dragonfly || freebsd || illumos || netbsd || openbsd || solaris
    
    package runtime
    
    // secureMode is only ever mutated in schedinit, so we don't need to worry about
    // synchronization primitives.
    var secureMode bool
    
    func initSecureMode() {
    	secureMode = issetugid() == 1
    }
    
    func isSecureMode() bool {
    	return secureMode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 502 bytes
    - Viewed (0)
  6. src/crypto/tls/cache.go

    // implemented in a similar fashion to BoringSSL's CRYPTO_BUFFER_POOL. This
    // allows for a single x509.Certificate to be kept in memory and referenced from
    // multiple Conns. Returned references should not be mutated by callers. Certificates
    // are still safe to use after they are removed from the cache.
    //
    // Certificates are returned wrapped in an activeCert struct that should be held by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:56:41 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/initialization/EnvironmentChangeTracker.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    
    @ServiceScope(Scope.BuildTree.class)
    public interface EnvironmentChangeTracker {
    
        /**
         * System properties mutated in runtime
         * */
        void systemPropertyChanged(Object key, @Nullable Object value, @Nullable String consumer);
    
        /**
         * System properties loaded from included build/buildSrc gradle.properties
         * */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/conversion.go

    	Attributes
    	// VersionedOldObject holds Attributes.OldObject (if non-nil), converted to VersionedKind.
    	// It must never be mutated.
    	VersionedOldObject runtime.Object
    	// VersionedObject holds Attributes.Object (if non-nil), converted to VersionedKind.
    	// If mutated, Dirty must be set to true by the mutator.
    	VersionedObject runtime.Object
    	// VersionedKind holds the fully qualified kind
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/surroundingobject.go

    //
    //	acc(obj) == x
    //	reflect.DeepEqual(acc(DeepCopy(obj), x) == x
    //
    // where x is the original instance for slices and maps.
    //
    // If after computation of acc the node holding x in obj is mutated (e.g. pruned),
    // the accessor will return that mutated node value (e.g. the pruned x).
    //
    // Example (ignoring the last two return values):
    //
    //	NewRootObjectFunc()(x) == x
    //	NewRootObjectFunc().Index()(x) == [x]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelActionRole.java

        Defaults(ModelNode.State.DefaultsApplied, true), // Allows a mutation to setup default values for an element
        Initialize(ModelNode.State.Initialized, true), // Mutation action provided when an element is defined
        Mutate(ModelNode.State.Mutated, true), // Customisations
        Finalize(ModelNode.State.Finalized, true), // Post customisation default values
        Validate(ModelNode.State.SelfClosed, true); // Post mutation validations
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top