Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 153 for NewValue (0.21 sec)

  1. src/cmd/gofmt/testdata/rewrite2.golden

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    // Slices have nil Len values in the corresponding ast.ArrayType
    // node and reflect.NewValue(slice.Len) is an invalid reflect.Value.
    // The rewriter must not crash in that case. Was issue 1696.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 407 bytes
    - Viewed (0)
  2. src/cmd/gofmt/testdata/rewrite2.input

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    // Slices have nil Len values in the corresponding ast.ArrayType
    // node and reflect.NewValue(slice.Len) is an invalid reflect.Value.
    // The rewriter must not crash in that case. Was issue 1696.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 406 bytes
    - Viewed (0)
  3. pkg/kubelet/winstats/perfcounter_nodestats.go

    	// Cache the CPU usage every defaultCachePeriod
    	go wait.Forever(func() {
    		newValue := p.nodeMetrics.cpuUsageCoreNanoSeconds
    		p.mu.Lock()
    		defer p.mu.Unlock()
    		p.cpuUsageCoreNanoSecondsCache = cpuUsageCoreNanoSecondsCache{
    			previousValue: p.cpuUsageCoreNanoSecondsCache.latestValue,
    			latestValue:   newValue,
    		}
    	}, defaultCachePeriod)
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishFeaturesJavaPluginIntegTest.groovy

                    }
                }
    
                ${ivyTestRepository()}
    
                dependencies {
                    featureImplementation 'org:optionaldep:1.0'
                }
    
                $prop = "$newValue"
            """
    
            when:
            def mod = ivyRepo.module(group, name, version)
            javaLibrary = javaLibrary(mod)
            run "publish"
            mod.removeGradleMetadataRedirection()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishFeaturesJavaPluginIntegTest.groovy

                    classpath = files()
                }
    
                dependencies {
                    featureImplementation 'org:optionaldep:1.0'
                }
    
                $prop = "$newValue"
            """
    
            when:
            def mod = mavenRepo.module(group, name, version)
            javaLibrary = javaLibrary(mod)
            run "publish"
            mod.removeGradleMetadataRedirection()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 02 01:52:06 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/TableCollectors.java

        V oldValue = table.get(row, column);
        if (oldValue == null) {
          table.put(row, column, value);
        } else {
          V newValue = mergeFunction.apply(oldValue, value);
          if (newValue == null) {
            table.remove(row, column);
          } else {
            table.put(row, column, newValue);
          }
        }
      }
    
      private TableCollectors() {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Mar 09 00:21:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/BloomFilterStrategies.java

          long oldValue;
          long newValue;
          do {
            oldValue = data.get(longIndex);
            newValue = oldValue | mask;
            if (oldValue == newValue) {
              return false;
            }
          } while (!data.compareAndSet(longIndex, oldValue, newValue));
    
          // We turned the bit on, so increment bitCount.
          bitCount.increment();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/SystemPropertyPropagationCrossVersionTest.groovy

        }
    
        def "Can override existing system properties"() {
            when:
            runTask { withSystemProperties('mySystemProperty' : 'newValue') }
    
            then:
            hasSystemProperty('mySystemProperty', 'newValue')
        }
    
        def "JVM arguments have precedence over system properties"() {
            when:
            runTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. src/mdo/transformer.vm

                String newValue = transform(oldValue);
                Map<String, String> oldAttrs = node.getAttributes();
                Map<String, String> newAttrs = transform(oldAttrs, this::transform);
                List<XmlNode> oldChildren = node.getChildren();
                List<XmlNode> newChildren = transform(oldChildren, this::transform);
                if (oldValue != newValue || oldAttrs != newAttrs || oldChildren != newChildren) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProjectStateRegistry.java

            @Override
            public void set(T newValue) {
                assertCanMutate();
                value = newValue;
            }
    
            @Override
            public T update(Function<T, T> updateFunction) {
                acquireUpdateLock();
                try {
                    T newValue = updateFunction.apply(value);
                    value = newValue;
                    return newValue;
                } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21K bytes
    - Viewed (0)
Back to top