Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for twice (0.02 sec)

  1. cmd/iam-object-store_test.go

    			"policydb/sts-users/", "uid=slash/user,ou=people,ou=swengg,dc=min,dc=io.json",
    		},
    		{
    			"policydb/sts-users/uid=slash/user/twice,ou=people,ou=swengg,dc=min,dc=io.json", true,
    			"policydb/sts-users/", "uid=slash/user/twice,ou=people,ou=swengg,dc=min,dc=io.json",
    		},
    		{
    			"policydb/groups/cn=project/d,ou=groups,ou=swengg,dc=min,dc=io.json", true,
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-10-10 23:40
    - 2K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/pod_cache_linux_test.go

    	}
    
    	if !reflect.DeepEqual(netns1, netns2) {
    		t.Fatalf("Expected the same Netns for the same uid, got %v and %v", netns1, netns2)
    	}
    
    	if counter.Load() != 2 {
    		t.Fatalf("Expected openNetns to be called twice, got %d", counter.Load())
    	}
    }
    
    func TestUpsertPodCacheWithNewInode(t *testing.T) {
    	counter.Store(0)
    
    	p := newPodNetnsCache(openNsTestOverrideWithInodes(1, 2))
    
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-03-03 21:55
    - 4.2K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/QueueTestSuiteBuilder.java

      /**
       * Specify whether to skip the general collection tests. Call this method when testing a
       * collection that's both a queue and a list, to avoid running the common collection tests twice.
       * By default, collection tests do run.
       */
      @CanIgnoreReturnValue
      public QueueTestSuiteBuilder<E> skipCollectionTests() {
        runCollectionTests = false;
        return this;
      }
    
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-02-26 19:46
    - 2.5K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/SmokeTests.kt

            tcParallelTests(splitNumber)
    
            requirements {
                // Smoke tests is usually heavy and the build time is twice on EC2 agents
                requiresNotEc2Agent()
            }
    
            applyTestDefaults(
                model,
                this,
                ":smoke-test:$task",
                timeout = 120,
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-02-12 09:12
    - 1.4K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/configurations/SmokeIdeTests.kt

            id(buildTypeId(model))
            name = "Smoke Ide Tests"
            description = "Tests against IDE sync process"
    
            requirements {
                // These tests are usually heavy and the build time is twice on EC2 agents
                requiresNotEc2Agent()
            }
    
            applyTestDefaults(
                model = model,
                buildType = this,
                gradleTasks = ":smoke-ide-test:smokeIdeTest",
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-04-17 07:24
    - 1.7K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Call.kt

    import okio.IOException
    import okio.Timeout
    
    /**
     * A call is a request that has been prepared for execution. A call can be canceled. As this object
     * represents a single request/response pair (stream), it cannot be executed twice.
     */
    interface Call : Cloneable {
      /** Returns the original request that initiated this call. */
      fun request(): Request
    
      /**
    Registered: 2025-05-30 11:42
    - Last Modified: 2024-12-27 13:39
    - 3.6K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/dependencies/classes-as-dependencies.md

    ## Type annotation vs `Depends`
    
    Notice how we write `CommonQueryParams` twice in the above code:
    
    //// tab | Python 3.8+
    
    ```Python
    commons: Annotated[CommonQueryParams, Depends(CommonQueryParams)]
    ```
    
    ////
    
    //// tab | Python 3.8+ non-Annotated
    
    /// tip
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-10 01:11
    - 6.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/math/QuantilesTest.java

            .isWithin(ALLOWED_ERROR)
            .of(45.6);
      }
    
      public void testScale_indexes_varargs_compute_doubleCollection() {
        // Note that we specify index 1 twice, which by the method contract should be ignored.
        assertThat(Quantiles.scale(10).indexes(0, 10, 5, 1, 8, 1).compute(SIXTEEN_SQUARES_DOUBLES))
            .comparingValuesUsing(QUANTILE_CORRESPONDENCE)
            .containsExactly(
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-22 03:38
    - 29.8K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/configurations/Gradleception.kt

                } else {
                    ""
                }
            description =
                "Builds Gradle with the version of Gradle which is currently under development (twice)$descriptionSuffix"
    
            requirements {
                // Gradleception is a heavy build which runs ~40m on EC2 agents but only ~20m on Hetzner agents
                requiresNotEc2Agent()
                requiresNotSharedHost()
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-01 14:55
    - 7.1K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetReadsTester.java

        assertFalse(
            "multiset.entrySet() contains a non-entry", getMultiset().entrySet().contains(e0()));
      }
    
      public void testEntrySet_twice() {
        assertEquals(
            "calling multiset.entrySet() twice returned unequal sets",
            getMultiset().entrySet(),
            getMultiset().entrySet());
      }
    
      @CollectionSize.Require(ZERO)
      public void testEntrySet_hashCode_size0() {
        assertEquals(
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-11-14 23:40
    - 4K bytes
    - Viewed (0)
Back to top