Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 71 for newValue3 (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/java/archives/internal/DefaultManifestMergeSpecTest.groovy

            mergeSpec.eachEntry {ManifestMergeDetails details ->
                if (details.getKey() == 'key2') {
                    details.setValue('newValue2')
                }
            }
    
            expect:
            mergeSpec.merge(baseManifest, Mock(FileResolver)).attributes == [key1: 'value1', key2: 'newValue2'] + MANIFEST_VERSION_MAP
        }
    
        def mergeWithActionOnSection() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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.3K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java

       * iterator tests.
       *
       * @return the new container instance
       * @param newValue the new container instance
       */
      @CanIgnoreReturnValue
      protected C resetContainer(C newValue) {
        container = newValue;
        return container;
      }
    
      /**
       * @see #expectContents(java.util.Collection)
       * @param elements expected contents of {@link #container}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top