Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for newValues (0.23 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

        }
    
        def "circular evaluation of standalone property is detected"() {
            buildFile """
                def prop = objects.property(String)
                prop.set(prop.map { "newValue" })
    
                println("prop = \${prop.get()}")
    
                tasks.register("myTask") {}
            """
    
            when:
            fails "myTask"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      ValueType start = start_attr.getValue();
      ValueType delta = delta_attr.getValue();
    
      SmallVector<ValueType, 16> new_values;
      new_values.reserve(num_elements);
      ValueType new_value = start;
      for (int i = 0; i < num_elements; ++i) {
        new_values.push_back(new_value);
        new_value = new_value + delta;
      }
      // Result is always a 1-D tensor.
      auto new_result_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Maps.java

                  }
    
                  @Override
                  @ParametricNullness
                  public V setValue(@ParametricNullness V newValue) {
                    checkArgument(apply(getKey(), newValue));
                    return super.setValue(newValue);
                  }
                };
              }
            };
          }
        }
    
        @Override
        Set<K> createKeySet() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  4. pkg/kube/inject/inject_test.go

    			}
    		})
    	}
    }
    
    func TestProxyImage(t *testing.T) {
    	val := func(hub string, tag any) *opconfig.Values {
    		t, _ := structpb.NewValue(tag)
    		return &opconfig.Values{
    			Global: &opconfig.GlobalConfig{
    				Hub: hub,
    				Tag: t,
    			},
    		}
    	}
    	pc := func(imageType string) *proxyConfig.ProxyImage {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			newObj: mustUnstructured(`
    				subField:
    					apiVersion: v2
    					kind: Baz
    					otherField: newValue
    				list:	
    				- name: entry1
    				  apiVersion: v2
    				  kind: Baz
    				  otherField: newValue2
    				- name: entry2
    				  apiVersion: v3
    				  kind: Bar
    				  otherField: newValue3
    			`),
    			warnings: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableMap.java

       * @deprecated Unsupported operation.
       */
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
      public final boolean replace(K key, V oldValue, V newValue) {
        throw new UnsupportedOperationException();
      }
    
      /**
       * Guaranteed to throw an exception and leave the map unmodified.
       *
       * @throws UnsupportedOperationException always
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 30 14:39:16 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Maps.java

                  }
    
                  @Override
                  @ParametricNullness
                  public V setValue(@ParametricNullness V newValue) {
                    checkArgument(apply(getKey(), newValue));
                    return super.setValue(newValue);
                  }
                };
              }
            };
          }
        }
    
        @Override
        Set<K> createKeySet() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    func TestAlias(t *testing.T) {
    	x := string("hello")
    	v := ValueOf(&x).Elem()
    	oldvalue := v.Interface()
    	v.SetString("world")
    	newvalue := v.Interface()
    
    	if oldvalue != "hello" || newvalue != "world" {
    		t.Errorf("aliasing: old=%q new=%q, want hello, world", oldvalue, newvalue)
    	}
    }
    
    var V = ValueOf
    
    func EmptyInterfaceV(x any) Value {
    	return ValueOf(&x).Elem()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top