Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 244 for based (0.04 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	// For line-based UI, Print writes to standard error.
    	// (Standard output is reserved for report data.)
    	Print(...interface{})
    
    	// PrintErr shows an error message to the user.
    	// It formats the text as fmt.Print would and adds a final \n if not already present.
    	// For line-based UI, PrintErr writes to standard error.
    	PrintErr(...interface{})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/OperatingSystemProfileActivator.java

    import org.apache.maven.model.building.ModelProblemCollector;
    import org.apache.maven.model.profile.ProfileActivationContext;
    import org.apache.maven.utils.Os;
    
    /**
     * Determines profile activation based on the operating system of the current runtime platform.
     *
     * @see ActivationOS
     */
    @Named("os")
    @Singleton
    public class OperatingSystemProfileActivator implements ProfileActivator {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 05 14:16:41 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

    Converts TensorFlow models (SavedModel or MLIR module) to StableHLO MLIR
    modules, preserving model structure and signatures. It enables seamless
    integration of TensorFlow models into MLIR-based compiler frameworks for further
    optimization and deployment.
    
    ## C++ APIs
    
    ```bash
    tf-to-stablehlo-translate \
        --input-path=/path/to/model \
        [--exported-model-signatures=signature1,signature2] \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputsTest.kt

            assertTrue(instance.isFileSystemCheckIgnoredFor(File("foo/one/two/bar/three")))
            assertTrue(instance.isFileSystemCheckIgnoredFor(File("foo/2/bar/3/4")))
        }
    
        @Test
        fun `recognizes user-home-based paths against the user home dir`() {
            val instance = createFromPaths(listOf("~/.gradle/foo.bar"))
            assertTrue(instance.isFileSystemCheckIgnoredFor(File(System.getProperty("user.home"), ".gradle/foo.bar")))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/python/converter_python_api_wrapper.cc

          of the converted model and some statistics like arithmetic ops count.
          `debug_info_str` contains the `GraphDebugInfo` proto. When
          `enable_mlir_converter` is True, tuse MLIR-based conversion instead of
          TOCO conversion.
        )pbdoc");
      m.def(
          "ExperimentalMlirQuantizeModel",
          [](py::object input_contents_txt_raw, bool disable_per_channel,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	// For line-based UI, Print writes to standard error.
    	// (Standard output is reserved for report data.)
    	Print(...interface{})
    
    	// PrintErr shows an error message to the user.
    	// It formats the text as fmt.Print would and adds a final \n if not already present.
    	// For line-based UI, PrintErr writes to standard error.
    	PrintErr(...interface{})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtension.kt

         * Get the list of files that should be generated for the module. Returned files should contain valid Kotlin code.
         *
         * If the content of these files becomes invalid (e.g., because the source declarations they were based on changed), the
         * [KaResolveExtension] must publish an out-of-block modification event via the Analysis API message bus:
         * `KotlinModificationTopics.MODULE_OUT_OF_BLOCK_MODIFICATION`.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerMiscEndUserIntegrationTest.groovy

                    }
                }
            """)
    
            then:
            fails 'build'
            failure.output.contains "Could not find a Gradle installation to use based on the location of the GradleRunner class: $testKitJar.canonicalPath. Please specify a Gradle runtime to use via GradleRunner.withGradleVersion() or similar."
        }
    
        def "can use GradleRunner to test"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    	}
    }
    
    // return the mesh network for the endpoint IP. Empty string if not found.
    func (b *EndpointBuilder) endpointNetwork(endpointIP string) network.ID {
    	// If we're building the endpoint based on proxy meta, prefer the injected ISTIO_META_NETWORK value.
    	if b.metaNetwork != "" {
    		return b.metaNetwork
    	}
    
    	return b.controller.Network(endpointIP, b.labels)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneFirDirectInheritorsProvider.kt

            // `ktClass` to the original FIR class.
            //
            // Note that this means we don't support providing inheritors based on the dangling file yet, for example if an inheritor was added
            // or removed only in the dangling file.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top