Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,206 for 20something (1.2 sec)

  1. tensorflow/c/experimental/grappler/grappler.cc

    ==============================================================================*/
    // This file extends/implements core graph optimizer base classes in terms of
    // the C API defined in grappler.h. A class "CSomething" represents a
    // "Something" that can be manipulated via calls in the C interface and a C
    // struct called "TP_Something".
    
    #include "tensorflow/c/experimental/grappler/grappler.h"
    
    #include <algorithm>
    #include <cstddef>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/resources/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest/sortsOptionsInAlphabeticOrder/build.gradle

    import org.gradle.api.tasks.options.Option
    
    task hello(type: CustomTask)
    
    class CustomTask extends DefaultTask {
    
        @TaskAction
        void doSomething() {
        }
    
        @Option(option = "valueB", description = "descB")
        public void setValueB(boolean value) {
        }
    
        @Option(option = "valueA", description = "descA")
        public void setValueA(boolean value) {
        }
    
        @Option(option = "valueC", description = "descC")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 15:17:44 UTC 2018
    - 475 bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/resources/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest/listsEnumAndBooleanCmdOptionValues/build.gradle

    import org.gradle.api.tasks.options.Option
    
    allprojects{
        task hello(type: CustomTask)
    }
    
    class CustomTask extends DefaultTask {
        @TaskAction
        void doSomething() {
        }
    
        @Option(option = "enumValue", description = "Configures an enum value in CustomTask.")
        public void setEnumValue(TestEnum value) {
        }
    
        @Option(option = "booleanValue", description = "Configures a boolean flag in CustomTask.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 10:43:03 UTC 2023
    - 517 bytes
    - Viewed (0)
  4. android/guava-tests/benchmark/com/google/common/base/StopwatchBenchmark.java

          Stopwatch s = Stopwatch.createStarted();
          // here is where you would do something
          total += s.elapsed(TimeUnit.NANOSECONDS);
        }
        return total;
      }
    
      @Benchmark
      long manual(int reps) {
        long total = 0;
        for (int i = 0; i < reps; i++) {
          long start = System.nanoTime();
          // here is where you would do something
          total += (System.nanoTime() - start);
        }
        return total;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/HasSuffixPatternStepTest.groovy

            step.matches(".java")
            !step.matches("thing.JAVA")
            !step.matches("thing.Java")
            !step.matches("thing.jav")
            !step.matches("thing.c")
            !step.matches("")
            !step.matches("something else")
        }
    
        def "matches name case insensitive"() {
            def step = new HasSuffixPatternStep(".java", false)
    
            expect:
            step.matches("thing.java")
            step.matches(".java")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/files/archivesChangedBaseName/kotlin/somedir/file.txt

    something to copy...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 19 bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/resources/org/gradle/api/tasks/copyTestResources/src/one/one.a

    Something to copy...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 21:14:41 UTC 2012
    - 17 bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/resources/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest/listsCommonDynamicAvailableValues/build.gradle

    import org.gradle.api.tasks.options.Option
    import org.gradle.api.tasks.options.OptionValues
    
    subprojects{
        task hello(type: CustomTask)
    }
    
    class CustomTask extends DefaultTask {
        @TaskAction
        void doSomething() {
        }
    
        @Option(option = "stringValue", description = "Configures a string value in CustomTask.")
        public void setStringValue(String value) {
        }
    
        @OptionValues("stringValue")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 16:41:46 UTC 2018
    - 531 bytes
    - Viewed (0)
  9. src/encoding/gob/gobencdec_test.go

    // Structs that include GobEncodable fields.
    
    type GobTest0 struct {
    	X int // guarantee we have  something in common with GobTest*
    	G *ByteStruct
    }
    
    type GobTest1 struct {
    	X int // guarantee we have  something in common with GobTest*
    	G *StringStruct
    }
    
    type GobTest2 struct {
    	X int    // guarantee we have  something in common with GobTest*
    	G string // not a GobEncoder - should give us errors
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/HasPrefixAndSuffixPatternStepTest.groovy

            !step.matches("pre-s")
            !step.matches("suf")
            !step.matches("re-suf")
            !step.matches("e-suf")
            !step.matches("Pre-Suf")
            !step.matches("")
            !step.matches("something else")
        }
    
        def "matches name case insensitive"() {
            def step = new HasPrefixAndSuffixPatternStep("pre", "suf", CASE_INSENSITIVE)
    
            expect:
            step.matches("pre-suf")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top