Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 912 for regular (0.11 sec)

  1. tensorflow/compiler/mlir/lite/debug/debug_options.proto

      optional string ir_dump_dir = 1 [default = ""];
    
      // Regular expression that matches the names of passes in pascal case (e.g.,
      // FooPass) before/after which MLIR will be dumped. Effective only if
      // ir_dump_dir is not empty.
      optional string ir_dump_pass_regex = 2 [default = ".*"];
    
      // Regular expression that matches the names of functions to be dumped. MLIR
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/RepositoryContentDescriptor.java

        void excludeModule(String group, String moduleName);
    
        /**
         * Declares that an entire module shouldn't be searched for in this repository, using regular expressions.
         *
         * @param groupRegex the group name regular expression
         * @param moduleNameRegex the module name regular expression
         */
        void excludeModuleByRegex(String groupRegex, String moduleNameRegex);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 23:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishArtifactCustomizationIntegTest.groovy

                }
            }
    
            and:
            resolveArtifacts(module) {
                classifier = 'regular'
                ext = 'txt'
                withModuleMetadata {
                    noComponentPublished()
                }
                withoutModuleMetadata {
                    expectFiles "projectText-1.0-regular.txt"
                }
            }
        }
    
        def "can attach custom file artifacts with map notation"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kubeletconfig/util/files/files_test.go

    			return err
    		}
    		if !info.IsDir() {
    			return fmt.Errorf("expected directory, got mode %s", info.Mode().String())
    		}
    	} else if f.mode.IsRegular() {
    		info, err := fs.Stat(path)
    		if err != nil {
    			return err
    		}
    		if !info.Mode().IsRegular() {
    			return fmt.Errorf("expected regular file, got mode %s", info.Mode().String())
    		}
    		data, err := fs.ReadFile(path)
    		if err != nil {
    			return err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 07 11:36:13 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  5. src/internal/coverage/cfile/hooks.go

    // ("go build -cover ..."), in which case we immediately try to write
    // out the meta-data file, and register emitCounterData as an exit
    // hook.
    //
    // If 'istest' is true (indicating that the program in question is a
    // Go test binary), then we tentatively queue up both emitMetaData and
    // emitCounterData as exit hooks. In the normal case (e.g. regular "go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. cni/pkg/install/cniconfig_test.go

    			inFilename:      "empty.conf",
    		},
    		{
    			name:            "regular file",
    			dir:             tempDir,
    			expectedFailure: false,
    			inFilename:      "regular.conf",
    			outFilename:     "regular.conf",
    			fileContents: `
    {
    	"cniVersion": "0.3.1",
    	"name": "istio-cni",
    	"type": "istio-cni"
    }`,
    		},
    		{
    			name:            "another regular file",
    			dir:             tempDir,
    			expectedFailure: false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishArtifactCustomizationIntegTest.groovy

            and:
            def ivy = module.parsedIvy
            ivy.expectArtifact("ivyPublish", "war").hasType("web-archive").hasConf(["*"])
            ivy.expectArtifact("docs", "htm").hasType("html").hasConf(null)
            ivy.expectArtifact("customFile", "txt", "classified").hasType("txt").hasConf(["foo", "bar"])
            ivy.expectArtifact("regular", "txt").hasType("reg").hasConf(null)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ClientModuleDependenciesResolveIntegrationTest.groovy

            buildFile << """
    repositories {
        ivy { url "${ivyHttpRepo.uri}" }
    }
    configurations {
        regular
        clientModule
    }
    dependencies {
        regular "group:projectA:1.2"
        clientModule module("group:projectA:1.2")
    }
    task listJars {
        doLast {
            assert configurations.regular.collect { it.name } == ['projectA-1.2.jar', 'projectA-1.2-extra.jar']
        }
    }
    task listClientModuleJars {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/typeCreator/Fe10IdeNormalAnalysisSourceModuleTypeParameterTypeTestGenerated.java

        runTest("analysis/analysis-api/testData/components/typeCreator/typeParameter/multipleBounds.kt");
      }
    
      @Test
      @TestMetadata("regular.kt")
      public void testRegular() {
        runTest("analysis/analysis-api/testData/components/typeCreator/typeParameter/regular.kt");
      }
    
      @Test
      @TestMetadata("reified.kt")
      public void testReified() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. src/go/build/testdata/doc/d_test.go

    // Doc from regular tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 07 14:35:52 UTC 2018
    - 39 bytes
    - Viewed (0)
Back to top