Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 155 for gretty (0.13 sec)

  1. pkg/test/framework/components/echo/config.go

    	// disable sidecar injection, etc.
    	// This aims to simulate a VM, but instead of managing the complex test setup of spinning up a VM,
    	// connecting, etc we run it inside a pod. The pod has pretty much all Kubernetes features disabled (DNS and SA token mount)
    	// such that we can adequately simulate a VM and DIY the bootstrapping.
    	DeployAsVM bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. apache-maven/src/assembly/maven/conf/settings.xml

         |
         | An encouraged best practice for profile identification is to use a consistent naming convention
         | for profiles, such as 'env-dev', 'env-test', 'env-production', 'user-jdcasey', 'user-brett', etc.
         | This will make it more intuitive to understand what the set of introduced profiles is attempting
         | to accomplish, particularly when you only have a list of profile id's for debug.
         |
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:06:01 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

    /**
     * Returns true if there is an element in this array that is also in [other]. This method terminates
     * if any intersection is found. The sizes of both arguments are assumed to be so small, and the
     * likelihood of an intersection so great, that it is not worth the CPU cost of sorting or the
     * memory cost of hashing.
     */
    internal fun Array<String>.hasIntersection(
      other: Array<String>?,
      comparator: Comparator<in String>,
    ): Boolean {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_bigger_applications/test_main_an.py

            "/items/plumbus?token=jessica", headers={"X-Token": "fake-super-secret-token"}
        )
        assert response.status_code == 200, response.text
        assert response.json() == {"item_id": "plumbus", "name": "The great Plumbus"}
    
    
    def test_put_forbidden(client: TestClient):
        response = client.put(
            "/items/bar?token=jessica", headers={"X-Token": "fake-super-secret-token"}
        )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

        def "nested #type#parameterType is validated with warning"() {
            buildFile << """
                abstract class CustomTask extends DefaultTask {
                    @Nested
                    $type$parameterType getMy$type() {
                        return $producer
                    }
    
                    @TaskAction
                    void execute() { }
                }
    
                tasks.register("customTask", CustomTask) { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

        assertEquals(0, logHandler.getStoredLogRecords().size());
      }
    
      public void testPartiallyConstructedManager_transitionAfterAddListenerBeforeStateIsReady() {
        // The implementation of this test is pretty sensitive to the implementation :( but we want to
        // ensure that if weird things happen during construction then we get exceptions.
        final NoOpService service1 = new NoOpService();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. src/runtime/heapdump.go

    func runtime_debug_WriteHeapDump(fd uintptr) {
    	stw := stopTheWorld(stwWriteHeapDump)
    
    	// Keep m on this G's stack instead of the system stack.
    	// Both readmemstats_m and writeheapdump_m have pretty large
    	// peak stack depths and we risk blowing the system stack.
    	// This is safe because the world is stopped, so we don't
    	// need to worry about anyone shrinking and therefore moving
    	// our stack.
    	var m MemStats
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

        assertEquals(0, logHandler.getStoredLogRecords().size());
      }
    
      public void testPartiallyConstructedManager_transitionAfterAddListenerBeforeStateIsReady() {
        // The implementation of this test is pretty sensitive to the implementation :( but we want to
        // ensure that if weird things happen during construction then we get exceptions.
        final NoOpService service1 = new NoOpService();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  9. src/go/printer/printer.go

    // It may be provided as argument to any of the [Fprint] functions.
    type CommentedNode struct {
    	Node     any // *ast.File, or ast.Expr, ast.Decl, ast.Spec, or ast.Stmt
    	Comments []*ast.CommentGroup
    }
    
    // Fprint "pretty-prints" an AST node to output for a given configuration cfg.
    // Position information is interpreted relative to the file set fset.
    // The node type must be *[ast.File], *[CommentedNode], [][ast.Decl], [][ast.Stmt],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

      float self_cost;
      if (!GetCostOnOp(func, &self_cost)) {
        func.emitError("we cannot find cost for this func");
        signalPassFailure();
      }
      return self_cost;
    }
    
    // Here we choose to do a greedy dynamic programming based algorithm for
    // simplicity.
    //
    // See the following graph:
    //
    //    input_subgraph_1      ....      input_subgraph_n
    //              \                          /
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
Back to top