Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 358 for Mutated (0.21 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilder.java

            // After running the dependency actions and preventing from mutation above, we know the
            // hierarchy will not change anymore and all configurations in the hierarchy
            // will no longer be mutated.
            ImmutableSet<String> hierarchy = Configurations.getNames(configuration.getHierarchy());
            CalculatedValue<DefaultLocalConfigurationMetadata.ConfigurationDependencyMetadata> dependencies =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/conversion/conversion_test.go

    				if err != nil {
    					t.Fatal(err)
    				}
    
    				// check that the direct mutation in etcd worked
    				labels := obj.GetLabels()
    				if labels["mutated"] != "true" {
    					t.Errorf("expected object %s in version %s to have label 'mutated=true'", name, getVersion.Name)
    				}
    
    				verifyMultiVersionObject(t, getVersion.Name, obj)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 47.1K bytes
    - Viewed (0)
  3. cni/pkg/install/install.go

    		watcher.Close()
    	}()
    
    	// Before we process whether any file events have been triggered, we must check that the file is correct
    	// at this moment, and if not, yield. This is to catch other CNIs which might have mutated the file between
    	// the (theoretical) window after we initially install/write, but before we actually start the filewatch.
    	if err := checkValidCNIConfig(in.cfg, in.cniConfigFilepath); err != nil {
    		return nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

     *     <li>By calling {@link ProviderFactory#provider(Callable)} or {@link org.gradle.api.Project#provider(Callable)} to create a new provider from a {@link Callable}.</li>
     * </ul>
     *
     * <p>
     * For a provider whose value can be mutated, see {@link Property} and the methods on {@link org.gradle.api.model.ObjectFactory}.
     * </p>
     *
     * <p>
     * <b>Note:</b> This interface is not intended for implementation by build script or plugin authors.
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. pilot/pkg/xds/filters/filters.go

    	EnvoyJwtFilterPayload = "payload"
    )
    
    // Define static filters to be reused across the codebase. This avoids duplicate marshaling/unmarshaling
    // This should not be used for filters that will be mutated
    var (
    	RetryPreviousHosts = &route.RetryPolicy_RetryHostPredicate{
    		Name: "envoy.retry_host_predicates.previous_hosts",
    		ConfigType: &route.RetryPolicy_RetryHostPredicate_TypedConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 09:24:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      // A list of booleans indicating the input tensors which are being mutated by
      // this operator.(e.g. used by RNN and LSTM).
      // For example, if the "inputs" array refers to 5 tensors and the second and
      // fifth are mutable variables, then this list will contain
      // [false, true, false, false, true].
      //
      // If the list is empty, no variable is mutated in this operator.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

         * so that these tasks are executed if this file collection is used as an input to some task.
         *
         * This method can also be used to create an empty collection, which can later be mutated to add elements.
         *
         * @param paths The paths to the files. May be empty.
         * @return The file collection.
         */
        fun files(vararg paths: Any): ConfigurableFileCollection
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  8. cmd/globals.go

    	// Only needed for tracking
    	globalServiceFreezeCnt int32
    	globalServiceFreezeMu  sync.Mutex // Updates.
    
    	// List of local drives to this node, this is only set during server startup,
    	// and is only mutated by HealFormat. Hold globalLocalDrivesMu to access.
    	globalLocalDrives    []StorageAPI
    	globalLocalDrivesMap = make(map[string]StorageAPI)
    	globalLocalDrivesMu  sync.RWMutex
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/BeforeResolveIntegrationTest.groovy

                    // `beforeResolve` is called after the configuration is resolved for task dependencies,
                    // but before it is fully resolved during artifact resolution
                    // Configurations should not be mutated in this hook
                    incoming.beforeResolve {
                        if (allDependencies.none { it.group == "com" && it.name == "foo" }) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 02:27:32 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    // as []ExpressionWarning that is ready to be set in policy.Status
    // The result is nil if type checking returns no warning.
    // The policy object is NOT mutated. The caller should update Status accordingly
    func (c *TypeChecker) Check(policy *v1.ValidatingAdmissionPolicy) []v1.ExpressionWarning {
    	ctx := c.CreateContext(policy)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top