Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 153 for NewValue (0.18 sec)

  1. 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)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

                    }
                }
    
                @Override
                public void onChange(Object key, Object newValue) {
                    listener().systemPropertyChanged(key, newValue, consumer);
                }
    
                @Override
                public void onRemove(Object key) {
                    listener().systemPropertyRemoved(key, consumer);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. 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)
  4. android/guava/src/com/google/common/collect/LinkedListMultimap.java

        @Override
        @ParametricNullness
        public V getValue() {
          return value;
        }
    
        @Override
        @ParametricNullness
        public V setValue(@ParametricNullness V newValue) {
          V result = value;
          this.value = newValue;
          return result;
        }
      }
    
      private static class KeyList<K extends @Nullable Object, V extends @Nullable Object> {
        Node<K, V> head;
        Node<K, V> tail;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/LinkedListMultimap.java

        @Override
        @ParametricNullness
        public V getValue() {
          return value;
        }
    
        @Override
        @ParametricNullness
        public V setValue(@ParametricNullness V newValue) {
          V result = value;
          this.value = newValue;
          return result;
        }
      }
    
      private static class KeyList<K extends @Nullable Object, V extends @Nullable Object> {
        Node<K, V> head;
        Node<K, V> tail;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/fields/selector.go

    func ParseAndTransformSelector(selector string, fn TransformFunc) (Selector, error) {
    	return parseSelector(selector, fn)
    }
    
    // TransformFunc transforms selectors.
    type TransformFunc func(field, value string) (newField, newValue string, err error)
    
    // splitTerms returns the comma-separated terms contained in the given fieldSelector.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 23 20:40:07 UTC 2020
    - 12.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/TreeMultiset.java

        @CheckForNull
        public T get() {
          return value;
        }
    
        public void checkAndSet(@CheckForNull T expected, @CheckForNull T newValue) {
          if (value != expected) {
            throw new ConcurrentModificationException();
          }
          value = newValue;
        }
    
        void clear() {
          value = null;
        }
      }
    
      private static final class AvlNode<E extends @Nullable Object> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/TreeMultiset.java

        @CheckForNull
        public T get() {
          return value;
        }
    
        public void checkAndSet(@CheckForNull T expected, @CheckForNull T newValue) {
          if (value != expected) {
            throw new ConcurrentModificationException();
          }
          value = newValue;
        }
    
        void clear() {
          value = null;
        }
      }
    
      private static final class AvlNode<E extends @Nullable Object> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.6K bytes
    - Viewed (0)
  9. 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)
  10. pkg/kubelet/config/config_test.go

    	clone := pod.DeepCopy()
    
    	podUpdate := CreatePodUpdate(kubetypes.SET, TestSource, clone)
    	channel <- podUpdate
    	expectPodUpdate(t, ch, CreatePodUpdate(kubetypes.ADD, TestSource, pod))
    
    	pod.Labels["key"] = "newValue"
    	podUpdate = CreatePodUpdate(kubetypes.SET, TestSource, pod)
    	channel <- podUpdate
    	expectPodUpdate(t, ch, CreatePodUpdate(kubetypes.UPDATE, TestSource, pod))
    
    }
    
    func TestPodConfigRace(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top