Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 89 for cunit (0.08 sec)

  1. cmd/object-api-listobjects_test.go

    func TestListObjects(t *testing.T) {
    	ExecObjectLayerTest(t, testListObjects)
    }
    
    // Unit test for ListObjects on VersionedBucket.
    func testListObjectsOnVersionedBuckets(obj ObjectLayer, instanceType string, t1 TestErrHandler) {
    	_testListObjects(obj, instanceType, t1, true)
    }
    
    // Unit test for ListObjects.
    func testListObjects(obj ObjectLayer, instanceType string, t1 TestErrHandler) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    			acceptProfile := func(t *testing.T, p *profile.Profile) bool {
    				if !matches(t, p) {
    					return false
    				}
    
    				ok := true
    				for i, unit := range []string{"count", "nanoseconds"} {
    					if have, want := p.SampleType[i].Unit, unit; have != want {
    						t.Logf("pN SampleType[%d]; %q != %q", i, have, want)
    						ok = false
    					}
    				}
    
    				// cpuHog1 called below is the primary source of CPU
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/pv_controller.go

    			// End of the provision + binding operation lifecycle, cache will be cleaned by "RecordMetric"
    			// [Unit test 12-1, 12-2, 12-4]
    			metrics.RecordMetric(claimKey, &ctrl.operationTimestamps, nil)
    			return nil
    		}
    	} else /* pvc.Spec.VolumeName != nil */ {
    		// [Unit test set 2]
    		// User asked for a specific PV.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    			sb := ctxt.loader.MakeSymbolUpdater(got)
    			sb.SetType(sym.SDYNIMPORT)
    			ctxt.loader.SetAttrReachable(got, true)
    		}
    	}
    
    	// DWARF-gen and other phases require that the unit Textp slices
    	// be populated, so that it can walk the functions in each unit.
    	// Call into the loader to do this (requires that we collect the
    	// set of internal libraries first). NB: might be simpler if we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "VCNT", argLength: 1, reg: fp11, asm: "VCNT"},                                  // count set bits for each 8-bit unit and store the result in each 8-bit unit
    		{name: "VUADDLV", argLength: 1, reg: fp11, asm: "VUADDLV"},                            // unsigned sum of eight bytes in a 64-bit value, zero extended to 64-bit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/MapsTest.java

    import java.util.Set;
    import java.util.SortedMap;
    import java.util.SortedSet;
    import java.util.TreeMap;
    import java.util.concurrent.ConcurrentMap;
    import junit.framework.TestCase;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Unit test for {@code Maps}.
     *
     * @author Kevin Bourrillion
     * @author Mike Bostock
     * @author Jared Levy
     */
    @GwtCompatible(emulated = true)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                    // implicit invoke call. For example,
                    // ```
                    // fun test(f: () -> Unit) {
                    //   f() // calleeExpression `f` resolves to the local variable access, while `f()` resolves to the implicit `invoke` call.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                        }
                    }
                }
            """)
    
            file("src/test/java/com/example/SampleTest.java") << """
                package com.example;
    
                import org.junit.Test;
    
                public class SampleTest {
                    @Test
                    public void checkSomething() {
                        // pass
                    }
                }""".stripIndent()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

     * limitations under the License.
     */
    
    package com.google.common.reflect;
    
    import static com.google.common.truth.Truth.assertThat;
    import static org.junit.Assert.assertThrows;
    
    import com.google.common.base.Function;
    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.ImmutableMap;
    import com.google.common.collect.ImmutableSet;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. pkg/kubelet/status/status_manager_test.go

    			Namespace: "new",
    		},
    	}
    }
    
    // After adding reconciliation, if status in pod manager is different from the cached status, a reconciliation
    // will be triggered, which will mess up all the old unit test.
    // To simplify the implementation of unit test, we add testSyncBatch() here, it will make sure the statuses in
    // pod manager the same with cached ones before syncBatch(true) so as to avoid reconciling.
    func (m *manager) testSyncBatch() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
Back to top