Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 358 for Mutated (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/testcase.go

    			ErrorContains:    " has panicked: Start panicking!",
    		},
    	}
    }
    
    func mutationAnnotationValue(configuration, webhook string, mutated bool) string {
    	return fmt.Sprintf(`{"configuration":"%s","webhook":"%s","mutated":%t}`, configuration, webhook, mutated)
    }
    
    func patchAnnotationValue(configuration, webhook string, patch string) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 47.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    type ObjectConvertor interface {
    	// Convert attempts to convert one object into another, or returns an error. This
    	// method does not mutate the in object, but the in and out object might share data structures,
    	// i.e. the out object cannot be mutated without mutating the in object as well.
    	// The context argument will be passed to all nested conversions.
    	Convert(in, out, context interface{}) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  3. pilot/pkg/model/proxy_config_test.go

    			pc := mesh.DefaultProxyConfig()
    			proto.Merge(pc, tc.expected)
    
    			assert.Equal(t, merged, pc)
    			after, _ := protomarshal.ToJSON(m)
    			assert.Equal(t, original, after, "mesh config should not be mutated")
    		})
    	}
    }
    
    func newProxyConfig(name, ns string, spec config.Spec) config.Config {
    	return config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.ProxyConfig,
    			Name:             name,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. pkg/registry/batch/cronjob/strategy_test.go

    	if len(errs) != 0 {
    		t.Errorf("Unexpected error %v", errs)
    	}
    	if newCronJob.ResourceVersion != "9" {
    		t.Errorf("Incoming resource version on update should not be mutated")
    	}
    }
    
    func TestStrategy_ResetFields(t *testing.T) {
    	resetFields := Strategy.GetResetFields()
    	if len(resetFields) != 2 {
    		t.Errorf("ResetFields should have 2 elements, but have %d", len(resetFields))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/environment/environment.go

    	// DeclTypes.
    	DeclTypes []*apiservercel.DeclType
    }
    
    // Extend returns an EnvSet based on this EnvSet but extended with given VersionedOptions.
    // This EnvSet is not mutated.
    // The returned EnvSet has the same compatibility version as the EnvSet that was extended.
    //
    // Extend is an expensive operation and each call to Extend that adds DeclTypes increases
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/BloomFilterStrategies.java

          return new LockFreeBitArray(toPlainArray(data));
        }
    
        /**
         * Combines the two BitArrays using bitwise OR.
         *
         * <p>NOTE: Because of the use of atomics, if the other LockFreeBitArray is being mutated while
         * this operation is executing, not all of those new 1's may be set in the final state of this
         * LockFreeBitArray. The ONLY guarantee provided is that all the bits that were set in the other
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/BloomFilterStrategies.java

          return new LockFreeBitArray(toPlainArray(data));
        }
    
        /**
         * Combines the two BitArrays using bitwise OR.
         *
         * <p>NOTE: Because of the use of atomics, if the other LockFreeBitArray is being mutated while
         * this operation is executing, not all of those new 1's may be set in the final state of this
         * LockFreeBitArray. The ONLY guarantee provided is that all the bits that were set in the other
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/connection/RealRoutePlanner.kt

       * exists but cannot be used for another exchange, it is closed and this returns null.
       */
      private fun planReuseCallConnection(): ReusePlan? {
        // This may be mutated by releaseConnectionNoEvents()!
        val candidate = connectionUser.candidateConnection() ?: return null
    
        // Make sure this connection is healthy & eligible for new exchanges. If it's no longer needed
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig.go

    type DynamicServingCertificateController struct {
    	// baseTLSConfig is the static portion of the tlsConfig for serving to clients.  It is copied and the copy is mutated
    	// based on the dynamic cert state.
    	baseTLSConfig *tls.Config
    
    	// clientCA provides the very latest content of the ca bundle
    	clientCA CAContentProvider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/rest/update.go

    	// Canonicalize allows an object to be mutated into a canonical form. This
    	// ensures that code that operates on these objects can rely on the common
    	// form for things like comparison.  Canonicalize is invoked after
    	// validation has succeeded but before the object has been persisted.
    	// This method may mutate the object.
    	Canonicalize(obj runtime.Object)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 11.8K bytes
    - Viewed (0)
Back to top