Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,006 for exploded (0.18 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h

    // the user did not explicitly specify.
    QuantizationConfig PopulateDefaults(
        const QuantizationConfig& user_provided_config);
    
    // Returns a copy of `QuantizationConfig` where presets are expanded and
    // transformed into other fields in `QuantizationConfig`.
    //
    // The expansion rules are as follows:
    // * StaticRangePtqPreset
    //   - The preset's `representative_datasets` field will be transferred to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/netlink.go

    	// Only the addresses of the current family are returned.
    	// IPv6 link-local and loopback addresses are excluded.
    	GetAllLocalAddresses() (sets.Set[string], error)
    	// GetLocalAddresses return all local addresses for an interface.
    	// Only the addresses of the current family are returned.
    	// IPv6 link-local and loopback addresses are excluded.
    	GetLocalAddresses(dev string) (sets.Set[string], error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 19:02:20 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_import_mod.txt

    # Test that GOPATH/pkg/mod is excluded
    env GO111MODULE=off
    ! go list mod/foo
    stderr 'disallowed import path'
    
    -- mod/foo/foo.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 01 00:35:26 UTC 2018
    - 143 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/stdlib_test.go

    				t.Skipf("skipping: GOROOT/test not present")
    			}
    		}
    		t.Fatal(err)
    	}
    
    	excluded := make(map[string]bool)
    	for _, filename := range ignore {
    		excluded[filename] = true
    	}
    
    	for _, f := range files {
    		// filter directory contents
    		if f.IsDir() || !strings.HasSuffix(f.Name(), ".go") || excluded[f.Name()] {
    			continue
    		}
    
    		// get per-file instructions
    		expectErrors := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-base/src/test/groovy/org/gradle/caching/internal/origin/OriginMetadataFactoryTest.groovy

            def baos = new ByteArrayOutputStream()
            writer.execute(baos)
            when:
            def reader = factory.createReader()
            // doesn't explode
            reader.execute(new ByteArrayInputStream(baos.toByteArray()))
            and:
            origin.load(new ByteArrayInputStream(baos.toByteArray()))
            then:
            origin.identity == "identity"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 15:16:00 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependencyLockingProvider.java

        /**
         * The current locking mode, exposed in the {@link org.gradle.api.artifacts.dsl.DependencyLockingHandler}.
         *
         * @return the locking mode
         */
        Property<LockMode> getLockMode();
    
        /**
         * Build finished hook for persisting per project lockfile
         */
        void buildFinished();
    
        /**
         * The file to be used as the per-project lock file, exposed in the {@link DefaultDependencyHandler}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/RepositoryContentDescriptor.java

     *
     * <p>Excludes are applied after includes. This means that by default, everything is included and nothing excluded.
     * If includes are added, then if the module doesn't match any of the includes, it's excluded. Then if it does, but
     * it also matches one of the excludes, it's also excluded.</p>
     *
     * @since 5.1
     */
    public interface RepositoryContentDescriptor extends InclusiveRepositoryContentDescriptor {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 23:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/projects/transform/before.pom

            <configuration>
              <modules>
                <webModule>
                  <groupId>artifactGroupId</groupId>
                  <artifactId>artifactId</artifactId>
                  <excluded>true</excluded>
                </webModule>
              </modules>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
      <profiles>
        <profile>
          <id>default-active</id>
          <activation>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 07:51:37 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/scripts/process-log.groovy

    File allOfDir = new File(processedDirectory, "allOf")
    File anyOfDir = new File(processedDirectory, "anyOf")
    excludesDir.mkdirs()
    allOfDir.mkdirs()
    anyOfDir.mkdirs()
    
    def exclusionPattern = ~/DependencyGraphBuilder] ([^ ]+) is excluded from ([^ ]+) by (.+?)\.$/
    
    println("Processing ${logFile} into directory ${processedDirectory}")
    
    int uniqueOpCount = 0
    int uniqueExcludeCount = 0
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/workingWithDependencies-accessMetadataArtifact/tests/printGuavaMetadata.out

    guava-18.0.pom
    Guava: Google Core Libraries for Java
    
        Guava is a suite of core and expanded libraries that include
        utility classes, google's collections, io classes, and much
        much more.
    
        Guava has only one code dependency - javax.annotation,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 284 bytes
    - Viewed (0)
Back to top