Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 153 for NewValue (0.18 sec)

  1. src/cmd/compile/internal/ssa/sccp.go

    	// to change it permanently, which can lead to errors. For example, We cannot
    	// change its value immediately after visiting Phi, because some of its input
    	// edges may still not be visited at this moment.
    	constValue := f.newValue(val.Op, val.Type, f.Entry, val.Pos)
    	constValue.AddArgs(args...)
    	matched := rewriteValuegeneric(constValue)
    	if matched {
    		if isConst(constValue) {
    			return lattice{constant, constValue}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. pkg/apis/networking/validation/validation_test.go

    					Ingress: []networking.IngressLoadBalancerIngress{
    						{IP: "127.0.0.1", Hostname: "foo.bar.com"},
    					},
    				},
    			},
    		}
    	}
    	oldValue := newValid()
    	newValue := newValid()
    	newValue.Status = networking.IngressStatus{
    		LoadBalancer: networking.IngressLoadBalancerStatus{
    			Ingress: []networking.IngressLoadBalancerIngress{
    				{IP: "127.0.0.2", Hostname: "foo.com"},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Synchronized.java

          synchronized (mutex) {
            return delegate().putIfAbsent(key, value);
          }
        }
    
        @Override
        public boolean replace(K key, V oldValue, V newValue) {
          synchronized (mutex) {
            return delegate().replace(key, oldValue, newValue);
          }
        }
    
        @Override
        @CheckForNull
        public V replace(K key, V value) {
          synchronized (mutex) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //sysnb	TimerfdCreate(clockid int, flags int) (fd int, err error)
    //sysnb	TimerfdGettime(fd int, currValue *ItimerSpec) (err error)
    //sysnb	TimerfdSettime(fd int, flags int, newValue *ItimerSpec, oldValue *ItimerSpec) (err error)
    //sysnb	Tgkill(tgid int, tid int, sig syscall.Signal) (err error)
    //sysnb	Times(tms *Tms) (ticks uintptr, err error)
    //sysnb	Umask(mask int) (oldmask int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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