Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 249 for passstring (0.18 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DuplicateHandlingCopyActionExecutorTest.groovy

            actions {}
    
            when:
            visit()
    
            then:
            2 * delegateAction.processFile({ it.relativePath.pathString == '/root/path/file1.txt' })
            1 * delegateAction.processFile({ it.relativePath.pathString == '/root/path/file2.txt' })
        }
    
        def duplicatesExcludedByPerFileConfiguration() {
            given:
            files 'path/file1.txt', 'path/file2.txt', 'path/file1.txt'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/CopyActionExecuterTest.groovy

            when:
            executer.execute(copySpec, copyAction)
    
            then:
            1 * action.processFile({ it.relativePath.pathString == "a" })
            0 * action.processFile(_)
        }
    
        Closure path(path) {
            return { println it.relativePath.pathString; it.relativePath.pathString == path }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 12:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/metadata/HasKotlinFlagsMetadataQuery.kt

        val properties = propertiesSupplier.get()
        for (p in properties) {
            when (jvmSignature) {
                p.fieldSignature?.asString() -> return predicate(p.flags)
                p.getterSignature?.asString() -> return predicate(p.getterFlags)
                p.setterSignature?.asString() -> return predicate(p.setterFlags)
            }
        }
        return false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 07 08:14:15 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. subprojects/core/src/testFixtures/groovy/org/gradle/api/file/FileVisitorUtil.groovy

                        if (details.relativePath.parent.parent) {
                            assertThat(dirs, hasItem(details.relativePath.parent.pathString))
                        }
                        assertTrue(files.add(details.relativePath.pathString))
                        assertTrue(details.relativePath.isFile())
                        assertTrue(details.file.file)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 14:26:33 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. src/debug/elf/file_test.go

    					Field: []dwarf.Field{
    						{Attr: dwarf.AttrProducer, Val: "GNU C 4.4.1", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrLanguage, Val: int64(1), Class: dwarf.ClassConstant},
    						{Attr: dwarf.AttrName, Val: "go-relocation-test.c", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrCompDir, Val: "/tmp", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrLowpc, Val: uint64(0x0), Class: dwarf.ClassAddress},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

      auto sub_type = mlir::dyn_cast<mlir::TF::TensorFlowTypeWithSubtype>(type);
      if (!sub_type) return false;
    
      bool has_string = llvm::any_of(sub_type.GetSubtypes(), [](TensorType type) {
        return mlir::isa<mlir::TF::StringType>(type.getElementType());
      });
      return has_string;
    }
    
    bool HasStringOperand(Operation& op) {
      for (auto operand : op.getOperands()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/string_util.cc

    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Operation.h"  // from @llvm-project
    
    namespace tensorflow {
    
    // Return a string form of `op` including debug information.
    std::string OpAsString(mlir::Operation& op) {
      std::string out;
      llvm::raw_string_ostream op_stream(out);
      op.print(op_stream, mlir::OpPrintingFlags()
                              .elideLargeElementsAttrs()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 16 23:18:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

            int andRecordCount = JsonPath.from(andResponse).getInt("record_count");
    
            Map<String, String> params = new HashMap<>();
            params.put("q", query);
            params.put("num", "100");
            String response = checkMethodBase(new HashMap<>()).params(params).get("/api/v1/documents").asString();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/it/CrudTestBase.java

            // logger.debug(response.asString());
            return response;
        }
    
        protected Response checkPutMethod(final Map<String, Object> body, final String path) {
            Response response = checkMethodBase(body).put(getApiPath() + "/" + path);
            // logger.debug(response.asString());
            return response;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. test/named.go

    	asSlice(*&slice)
    	isSlice(*&slice)
    
    	asString(str)
    	isString(str)
    	asString(str + "a")
    	isString(str + "a")
    	asString("a" + str)
    	isString("a" + str)
    	asString(str + str)
    	isString(str + str)
    	str += "a"
    	str += str
    	asString(String('a'))
    	isString(String('a'))
    	asString(String([]byte(slice)))
    	isString(String([]byte(slice)))
    	asString(String([]byte(nil)))
    	isString(String([]byte(nil)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 4.6K bytes
    - Viewed (0)
Back to top