Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 1,485 for corerest (0.13 sec)

  1. logo/usage_guidelines.md

    All artwork is made available under the Linux Foundation trademark usage
    [guidelines](https://www.linuxfoundation.org/trademark-usage/). This text from
    those guidelines, and the correct and incorrect usage examples, are particularly
    helpful:
    >Certain marks of The Linux Foundation have been created to enable you to
    >communicate compatibility or interoperability of software or products. In
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  2. releasenotes/notes/43892.yaml

    issue:
      - 41462 
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
      - |-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 10:52:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/poms/validation/raw-model/ok-ci-friendly-all-expressions.xml

      <artifactId>valid-version-sha1</artifactId>
      <version>${revision}${changelist}${sha1}</version>
    
      <description>
        This will test if the validation for the ci friendly versions
        is working correct.
      </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:50:27 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  4. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/CheckContributorsInReleaseNotes.kt

                    You can run `GITHUB_TOKEN=<YourGitHubToken> ./gradlew docs:updateContributorsInReleaseNotes --milestone <milestone>` to update the release notes with correct contributors automatically.
                    """.trimIndent()
                )
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 16 05:03:11 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/derived_attrs.mlir

      %dense_value =
        "tf.ParseExampleV2"(%serialized, %names, %sparse_keys, %dense_keys, %ragged_keys, %dense_default)
        // CHECK: Tdense = [i64]
        // CHECK-SAME: dense_shapes = [#corert.shape<>]
        { device = "/device:CPU:0", num_sparse = 0 : i64, dense_shapes = [#tf_type.shape<>], resultSegmentSizes = array<i32: 0, 0, 0, 1, 0, 0>}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 959 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenComponentMetadataRulesStatusIntegrationTest.groovy

            mavenHttpRepo
        }
    
        String getRepoDeclaration() {
    """
    repositories {
        maven {
            url "$repo.uri"
        }
    }
    """
        }
    
        def "snapshot and release versions have correct status"() {
            given:
            repo.module('group1', 'projectA', '1.0').publish().allowAll()
            repo.module('group2', 'projectB', '2.0-SNAPSHOT').publish().allowAll()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. .github/CONTRIBUTING.md

    - Get working code on a personal branch with tests before you submit a PR.
    - OkHttp is a small and light dependency.  Don't introduce new dependencies or major new functionality.
    - OkHttp targets the intersection of RFC correct *and* widely implemented.  Incorrect implementations that are very widely implemented e.g. a bug in Apache, Nginx, Google, Firefox should also be handled.
    
    Before your code can be accepted into the project you must also sign the
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 17 04:16:26 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/PhasedActionEventConsumer.java

    import org.gradle.tooling.internal.provider.serialization.PayloadSerializer;
    
    /**
     * Consumer of events from phased actions. This consumer deserializes the results and forward them to the correct listener.
     */
    public class PhasedActionEventConsumer implements BuildEventConsumer {
        private final PhasedActionResultListener phasedActionResultListener;
        private final PayloadSerializer payloadSerializer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/EnumBuildOptionTest.groovy

    import spock.lang.Specification
    
    class EnumBuildOptionTest extends Specification {
        def option = new MyEnumBuildOption()
    
        def "reasonable error message when user doesn't select a correct value"() {
            def receiver = Mock(Dummy)
    
            when:
            option.applyFromProperty([test: 'thou'], receiver)
    
            then:
            1 * receiver.accept(MyEnum.THOU)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. test/typeparam/issue48042.go

    }
    func g[T any]() func() (*T) {
    	return func() (*T) {
    		t := new(T)
    		reflect.ValueOf(t).Elem().SetInt(100)
    		return t
    	}
    }
    
    func main() {
    	foo := Foo[int]{}
    	// Make sure the function conversion is correct
    	if n := *(foo.f1()) ; n != 100{
    		panic(fmt.Sprintf("%v",n))
    	}
    	if n := *(foo.f2()) ; n != 100{
    		panic(fmt.Sprintf("%v",n))
    	}
    	if n := *(foo.f3()) ; n != 100{
    		panic(fmt.Sprintf("%v",n))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top