Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 117 for changedTo (0.18 sec)

  1. pkg/apis/storage/validation/validation_test.go

    		modify: func(new *storage.CSIDriver) {
    			new.Spec.RequiresRepublish = &requiresRepublish
    		},
    	}, {
    		name: "StorageCapacity changed",
    		modify: func(new *storage.CSIDriver) {
    			new.Spec.StorageCapacity = &notStorageCapacity
    		},
    	}, {
    		name: "SELinuxMount changed",
    		modify: func(new *storage.CSIDriver) {
    			new.Spec.SELinuxMount = &notSELinuxMount
    		},
    	}, {
    		name: "change PodInfoOnMount",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Before using a configuration cache entry, Gradle checks that none of the "build configuration inputs", such as build scripts, for the entry have changed.
    If a build configuration input has changed, Gradle will not use the entry and will run the configuration phase again as above, saving the result for later reuse.
    
    Build configuration inputs include:
    
    - Init scripts
    - Settings scripts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Consider the process of compilation.
    Once your source files have been compiled, there should be no need to recompile them unless something has changed that affects the output, such as the modification of a source file or the removal of an output file.
    And compilation can take a significant amount of time, so skipping the step when it’s not needed saves a lot of time.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    When `libUtil` is changed, Gradle will need to recompile or relink `LinuxApp` and `WindowsApp`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  5. src/time/time.go

    // the year -292277022399.
    //
    // All this is opaque to clients of the API and can be changed if a
    // better implementation presents itself.
    
    const (
    	// The unsigned zero year for internal calculations.
    	// Must be 1 mod 400, and times before it will not compute correctly,
    	// but otherwise can be changed at will.
    	absoluteZeroYear = -292277022399
    
    	// The year of the zero Time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Sets.java

      }
    
      /** Remove each element in an iterable from a set. */
      static boolean removeAllImpl(Set<?> set, Iterator<?> iterator) {
        boolean changed = false;
        while (iterator.hasNext()) {
          changed |= set.remove(iterator.next());
        }
        return changed;
      }
    
      static boolean removeAllImpl(Set<?> set, Collection<?> collection) {
        checkNotNull(collection); // for GWT
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier.go

    				proxier.logger.Error(err, "Failed to add IPVS service", "serviceName", svcName)
    				return err
    			}
    		} else {
    			// IPVS service was changed, update the existing one
    			// During updates, service VIP will not go down
    			proxier.logger.V(3).Info("IPVS service was changed", "serviceName", svcName)
    			if err := proxier.ipvs.UpdateVirtualServer(vs); err != nil {
    				proxier.logger.Error(err, "Failed to update IPVS service")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  8. pkg/apis/core/v1/defaults_test.go

    		template := rc.Spec.Template
    		defaults := detectDefaults(t, rc, reflect.ValueOf(template))
    		if !reflect.DeepEqual(expectedDefaults, defaults) {
    			t.Errorf("Defaults for PodTemplateSpec changed. This can cause spurious rollouts of workloads on API server upgrade.")
    			t.Logf(cmp.Diff(expectedDefaults, defaults))
    		}
    	})
    	t.Run("hostnet PodTemplateSpec with ports", func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      }
      return filtered;
    }
    
    // Changes the types of the control flow op (e.g., while, if) and adds loads and
    // stores around it. arg_data_type_and_updated_output_index maps an operand (to
    // be changed) index to its data type and the updated value index in the output
    // (-1 means not updated.)
    void AddLoadsStoresOutsideControlFlowOp(
        Operation* caller,
        const llvm::SmallDenseMap<int64_t, std::pair<Type, int64_t>>&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. pkg/proxy/winkernel/proxier.go

    		klog.InfoS("The HNS network is not present or has changed since the last sync, please check the CNI deployment", "hnsNetworkName", hnsNetworkName)
    		proxier.cleanupAllPolicies()
    		if updatedNetwork != nil {
    			proxier.network = *updatedNetwork
    		}
    		return
    	}
    
    	// We assume that if this was called, we really want to sync them,
    	// even if nothing changed in the meantime. In other words, callers are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
Back to top