Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 112 for TestTd (0.19 sec)

  1. cmd/test-utils_test.go

    	// Register all bucket level handlers.
    	registerBucketLevelFunc(bucketRouter, api, apiFunctions...)
    }
    
    // Takes in Erasure object layer, and the list of API end points to be tested/required, registers the API end points and returns the HTTP handler.
    // Need isolated registration of API end points while writing unit tests for end points.
    // All the API end points are registered only for the default case.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Determines whether test results can be streamed to a socket.
    #if GTEST_OS_LINUX
    # define GTEST_CAN_STREAM_RESULTS_ 1
    #endif
    
    // Defines some utility macros.
    
    // The GNU compiler emits a warning if nested "if" statements are followed by
    // an "else" statement and braces are not used to explicitly disambiguate the
    // "else" binding.  This leads to problems with code like:
    //
    //   if (gate)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("1", pom.getValue("build/plugins[1]/dependencies[5]/version"));
        }
    
        @Test
        void testInterpolationOfNestedBuildDirectories() throws Exception {
            PomTestWrapper pom = buildPom("nested-build-dir-interpolation");
            assertEquals(
                    new File(pom.getBasedir(), "target/classes/dir0"), new File((String) pom.getValue("properties/dir0")));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Determines whether test results can be streamed to a socket.
    #if GTEST_OS_LINUX
    # define GTEST_CAN_STREAM_RESULTS_ 1
    #endif
    
    // Defines some utility macros.
    
    // The GNU compiler emits a warning if nested "if" statements are followed by
    // an "else" statement and braces are not used to explicitly disambiguate the
    // "else" binding.  This leads to problems with code like:
    //
    //   if (gate)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route_test.go

    						},
    					},
    				},
    			},
    		},
    	},
    }
    
    var virtualServiceWithNestedWildcardHost = config.Config{
    	Meta: config.Meta{
    		GroupVersionKind: gvk.VirtualService,
    		Name:             "nested-wildcard",
    	},
    	Spec: &networking.VirtualService{
    		Hosts: []string{"*.hello.example.org"},
    		Http: []*networking.HTTPRoute{
    			{
    				Match: []*networking.HTTPMatchRequest{
    					{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * copy the files. Example:
         * <pre>
         * copy {
         *    from configurations.runtimeClasspath
         *    into 'build/deploy/lib'
         * }
         * </pre>
         * Note that CopySpecs can be nested:
         * <pre>
         * copy {
         *    into 'build/webroot'
         *    exclude '**&#47;.svn/**'
         *    from('src/main/webapp') {
         *       include '**&#47;*.jsp'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // types. If the returned resource traces back to an input argument for the
      // SPC, then replace uses of the returned copy with the original input.
      //
      // Note: This does not descend through nested SCPs.
      auto ComesFromBlockArgNumber = [](Value val) -> int {
        while (true) {
          if (auto block_arg = llvm::dyn_cast<BlockArgument>(val)) {
            return block_arg.getArgNumber();
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Sets.java

       * elements without resizing. Note that this is not what {@link HashSet#HashSet(int)} does, but it
       * is what most users want and expect it to do.
       *
       * <p>This behavior can't be broadly guaranteed, but has been tested with OpenJDK 1.7 and 1.8.
       *
       * @param expectedSize the number of elements you expect to add to the returned set
       * @return a new, empty hash set with enough capacity to hold {@code expectedSize} elements
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	//
    	// A header is comprised of 6 uint16s and no padding.
    	headerLen = 6 * uint16Len
    )
    
    type nestedError struct {
    	// s is the current level's error message.
    	s string
    
    	// err is the nested error.
    	err error
    }
    
    // nestedError implements error.Error.
    func (e *nestedError) Error() string {
    	return e.s + ": " + e.err.Error()
    }
    
    // Header is a representation of a DNS message header.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  10. cmd/xl-storage.go

    						s.deleteFile(dstVolumeDir, legacyDataPath, true, false)
    
    						return res, osErrToFileErr(err)
    					}
    				}
    			}
    		}
    	}
    
    	// Set skipParent to skip mkdirAll() calls for deeply nested objects
    	// - if its an overwrite
    	// - if its a versioned object
    	//
    	// This can potentiall reduce syscalls by strings.Split(path, "/")
    	// times relative to the object name.
    	skipParent := dstVolumeDir
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top