Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 129 for changedTo (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    					continue
    				}
    				// The live set has changed, update it.
    				l := s.live[p.ID][:0]
    				if cap(l) < t.size() {
    					l = make([]liveInfo, 0, t.size())
    				}
    				for _, e := range t.contents() {
    					l = append(l, liveInfo{e.key, e.val, e.pos})
    				}
    				s.live[p.ID] = l
    				changed = true
    			}
    		}
    
    		if !changed {
    			break
    		}
    	}
    	if f.pass.debug > regDebug {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		return framework.Queue, nil
    	}
    
    	// Modifications may or may not be relevant. If the entire
    	// requests are as before, then something else must have changed
    	// and we don't care.
    	if apiequality.Semantic.DeepEqual(&originalParameters.DriverRequests, &modifiedParameters.DriverRequests) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            }
        }
    
        /**
         * If this configuration has a role set upon creation, conditionally warn upon usage mutation.
         * Configurations with roles set upon creation should not have their usage changed. In 9.0,
         * changing the usage of a configuration with a role set upon creation will become an error.
         *
         * <p>In the below two cases, for non-legacy configurations, this method does not warn. This is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

        [(IsTailOfShape $rhs, $lhs),
         (HasOneUse $lhs),
         // The result of the new "BinaryOp" will have the same shape as
         // `input`. In other words, the shape of the `Reshape` op are not
         // changed after the transformation.
         (IsTailOfShape $rhs, $input),
         (HasRankAtMost<4> $input),
         (HasRankAtMost<4> $lhs),
         (HasRankAtMost<4> $rhs),
         (SameElementType $input, $rhs)]>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types.go

    	// the previous pod is ready or terminated. At most one pod will be changed
    	// at any time.
    	OrderedReadyPodManagement PodManagementPolicyType = "OrderedReady"
    	// ParallelPodManagement will create and delete pods as soon as the stateful set
    	// replica count is changed, and will not wait for pods to be ready or complete
    	// termination.
    	ParallelPodManagement PodManagementPolicyType = "Parallel"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// the previous pod is ready or terminated. At most one pod will be changed
    	// at any time.
    	OrderedReadyPodManagement PodManagementPolicyType = "OrderedReady"
    	// ParallelPodManagement will create and delete pods as soon as the stateful set
    	// replica count is changed, and will not wait for pods to be ready or complete
    	// termination.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
Back to top