Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for newValues (0.56 sec)

  1. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

      }
    
      @CanIgnoreReturnValue
      @Override
      public boolean replace(K key, @CheckForNull V oldValue, V newValue) {
        checkNotNull(key);
        checkNotNull(newValue);
        if (oldValue == null) {
          return false;
        }
        int hash = hash(key);
        return segmentFor(hash).replace(key, hash, oldValue, newValue);
      }
    
      @CheckForNull
      @CanIgnoreReturnValue
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

         * thereafter.
         */
        private void maybeWarnOnChangingUsage(String methodName, boolean current, boolean newValue) {
            if (isInLegacyRole()) {
                return;
            }
    
            // Error will be thrown later. Don't emit a duplicate warning.
            if (!usageCanBeMutated && (current != newValue)) {
                return;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  3. src/encoding/json/decode_test.go

    		errMaxDepth: true,
    	}}
    
    	targets := []struct {
    		CaseName
    		newValue func() any
    	}{{
    		CaseName: Name("unstructured"),
    		newValue: func() any {
    			var v any
    			return &v
    		},
    	}, {
    		CaseName: Name("typed named field"),
    		newValue: func() any {
    			v := struct {
    				A any `json:"a"`
    			}{}
    			return &v
    		},
    	}, {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

     ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  5. src/crypto/x509/x509.go

    			for _, atvs := range atvSet.Value {
    				for _, atv := range atvs {
    					specifiedExtensions[atv.Type.String()] = true
    				}
    			}
    
    			newValue := make([]pkix.AttributeTypeAndValue, 0, len(atvSet.Value[0])+len(extensions))
    			newValue = append(newValue, atvSet.Value[0]...)
    
    			for _, e := range extensions {
    				if specifiedExtensions[e.Id.String()] {
    					// Attributes already contained a value for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            given:
            buildScript """
                task (copy, type:Copy) {
                   from ('src') {
                      def newValue = providers.systemProperty('new-value').present
                      if (newValue) {
                            $newValue
                      } else {
                            $oldValue
                      }
                   }
                   into 'dest'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func TimerfdSettime(fd int, flags int, newValue *ItimerSpec, oldValue *ItimerSpec) (err error) {
    	_, _, e1 := RawSyscall6(SYS_TIMERFD_SETTIME, uintptr(fd), uintptr(flags), uintptr(unsafe.Pointer(newValue)), uintptr(unsafe.Pointer(oldValue)), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top