Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,062 for sget (2.84 sec)

  1. guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

        }
      }
    
      /** get returns the last value set at index */
      public void testGetSet() {
        AtomicDoubleArray aa = new AtomicDoubleArray(VALUES.length);
        for (int i = 0; i < VALUES.length; i++) {
          assertBitEquals(0.0, aa.get(i));
          aa.set(i, VALUES[i]);
          assertBitEquals(VALUES[i], aa.get(i));
          aa.set(i, -3.0);
          assertBitEquals(-3.0, aa.get(i));
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

            }
          } else {
            // set on the future completed
            assertFalse(cancellationSuccess.get());
            assertTrue(setFutureSetSuccess.get());
            assertTrue(setFutureCompletionSuccess.get());
          }
          // reset for next iteration
          setFutureSetSuccess.set(false);
          setFutureCompletionSuccess.set(false);
          cancellationSuccess.set(false);
          finalResults.clear();
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  3. src/mdo/model-v3.vm

        #set ( $types = { } )
        #set ( $imports = $class.getClass().forName("java.util.TreeSet").newInstance() )
        #set ( $dummy = $imports.add( "java.io.Serializable" ) )
        #set ( $dummy = $imports.add( "java.util.AbstractList" ) )
        #set ( $dummy = $imports.add( "java.util.Collections" ) )
        #set ( $dummy = $imports.add( "java.util.HashMap" ) )
        #set ( $dummy = $imports.add( "java.util.List" ) )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_test.go

    		if set, err = om.setsLister.StatefulSets(set.Namespace).Get(set.Name); err != nil {
    			t.Errorf(onPolicy("Could not get scaled up set: %v", err))
    		}
    		if set.Status.Replicas != 3 {
    			t.Errorf(onPolicy("set.Status.Replicas = %v; want 3", set.Status.Replicas))
    		}
    		*set.Spec.Replicas = 2
    		if err := scaleDownStatefulSetController(logger, set, ssc, spc, om); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/CollectionPropertyIntegrationTest.groovy

    def provider = providers.provider { [++counter, ++counter] }
    
    def property = objects.listProperty(Integer)
    property.set(provider)
    
    assert property.get() == [1, 2]
    assert property.get() == [3, 4]
    property.finalizeValue()
    assert property.get() == [5, 6]
    assert property.get() == [5, 6]
    
    property.set([1])
    """
    
            when:
            fails()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:57:00 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/README.md

    ```shell
    #before running one of the commands chosen to start a cluster:
    # curl -sS https://get.k8s.io | bash
    # wget -q -O - https://get.k8s.io | bash
    # cluster/kube-up.sh
    export KUBE_PROXY_MODE=ipvs
    ```
    
    ### Cluster Created by Kubeadm
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConfigurationDeprecatedExtensions.kt

        get() = get().singleFile
    
    
    /**
     * See [Configuration.getFiles].
     */
    @Deprecated(deprecationMessage, replaceWith = ReplaceWith("get().files"), level = DeprecationLevel.HIDDEN)
    val <T : Configuration> NamedDomainObjectProvider<T>.files: Set<File>
        get() = get().files
    
    
    /**
     * See [Configuration.contains].
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. pilot/pkg/features/experimental.go

    	EnableGatewayAPIStatus = env.Register("PILOT_ENABLE_GATEWAY_API_STATUS", true,
    		"If this is set to true, gateway-api resources will have status written to them").Get()
    
    	EnableGatewayAPIDeploymentController = env.Register("PILOT_ENABLE_GATEWAY_API_DEPLOYMENT_CONTROLLER", true,
    		"If this is set to true, gateway-api resources will automatically provision in cluster deployment, services, etc").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyIntegrationTest.groovy

    custom.prop = layout.projectDir.dir("dir1")
    assert custom.prop.get().asFile == file("dir1")
    
    custom.prop = providers.provider { layout.projectDir.dir("dir2") }
    assert custom.prop.get().asFile == file("dir2")
    
    custom.prop = layout.buildDir.dir("dir3")
    assert custom.prop.get().asFile == file("build/dir3")
    
    custom.prop = file("dir4")
    assert custom.prop.get().asFile == file("dir4")
    
    custom.prop.set((Directory)null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  10. src/runtime/asm_wasm.s

    	\
    	I64Load stackArgs+16(FP); \
    	Get R0; \
    	I64Add; \
    	Set RET1; \
    	\
    	Get SP; \
    	I64ExtendI32U; \
    	Get R0; \
    	I64Add; \
    	Set RET2; \
    	\
    	I64Load32U stackArgsSize+24(FP); \
    	Get R0; \
    	I64Sub; \
    	Set RET3; \
    	\
    	CALL callRet<>(SB); \
    	RET
    
    // callRet copies return values back at the end of call*. This is a
    // separate function so it can allocate stack space for the arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:26:51 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top