Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 314 for mixer (1.01 sec)

  1. okhttp/src/test/resources/web-platform-test-toascii.json

        "input": "xn--tešla",
        "output": null
      },
      {
        "comment": "Valid Punycode",
        "input": "xn--zca.xn--zca",
        "output": "xn--zca.xn--zca"
      },
      {
        "comment": "Mixed",
        "input": "xn--zca.ß",
        "output": "xn--zca.xn--zca"
      },
      {
        "input": "ab--c.xn--zca",
        "output": "ab--c.xn--zca"
      },
      {
        "input": "ab--c.ß",
        "output": "ab--c.xn--zca"
      },
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorInjectUndecoratedTest.groovy

            def services = Stub(ServiceLookup)
            services.get(Number) >> 12
    
            expect:
            // Use a Java class to verify GroovyObject is not mixed in
            def bean = create(BeanWithServiceGetters, services)
            bean.someValue == 12
            bean.calculated == "[12]"
    
            bean instanceof GeneratedSubclass
            bean.publicType() == BeanWithServiceGetters
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/settings/SettingsBlocksCheck.kt

                    specialBlockKind != null -> when (seenBlock) {
                        null -> seenBlock = specialBlockKind
                        specialBlockKind -> duplicates += node
                        else -> error("unexpected mixed kinds of special blocks in one resolved DOM")
                    }
    
                    seenBlock == null -> outOfOrderNodes += node
                }
            }
            return seenBlock?.let { seen ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectStateInternal.java

    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Represents the lifecycle state of a project, with regard to configuration.
     *
     * There are three synonymous terms mixed in here (configure, evaluate, execute) for legacy reasons.
     * Where not bound to backwards compatibility constraints, we use the term “configure”.
     *
     * @see org.gradle.configuration.project.LifecycleProjectEvaluator
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:05 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalCancellableConnection.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.protocol;
    
    import org.gradle.tooling.internal.protocol.exceptions.InternalUnsupportedBuildArgumentException;
    
    /**
     * Mixed into a provider connection, to allow tooling models to be requested by the client
     * and to run client-provided actions (including builds) with cancellation support.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelMapGroovyView.java

    import org.gradle.util.internal.ClosureBackedAction;
    
    import static org.gradle.internal.Cast.uncheckedCast;
    
    /**
     * Used as the superclass for views for types that extend {@link org.gradle.model.ModelMap}. Mixes in Groovy DSL support.
     */
    // TODO - mix in Groovy support using bytecode decoration instead
    // TODO - validate closure parameters to check they are within bounds
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/python/quantization.py

      )
    
      signature_def_map_serialized = _serialize_signature_def_map(signature_def_map)
      # Currently, only StaticRangePtq or WeightOnlyPtq is supported.
      # Consider merging the pipelines to address mixed algorithm models.
      if _has_quantization_method(config.specs, 'static_range_ptq'):
        pywrap_quantization.static_range_ptq(
            src_saved_model_path,
            dst_saved_model_path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 4.6K bytes
    - Viewed (1)
  8. src/runtime/tracetime.go

    // traceTime represents a timestamp for the trace.
    type traceTime uint64
    
    // traceClockNow returns a monotonic timestamp. The clock this function gets
    // the timestamp from is specific to tracing, and shouldn't be mixed with other
    // clock sources.
    //
    // nosplit because it's called from exitsyscall, which is nosplit.
    //
    // traceClockNow is called by golang.org/x/exp/trace using linkname.
    //
    //go:linkname traceClockNow
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. pkg/proxy/util/linebuffer_test.go

    			input:    []interface{}{"test1"},
    			expected: "test1\n",
    		},
    		{
    			name:     "one slice",
    			input:    []interface{}{[]string{"test1", "test2"}},
    			expected: "test1 test2\n",
    		},
    		{
    			name:     "mixed",
    			input:    []interface{}{"s1", "s2", []string{"s3", "s4"}, "", "s5", []string{}, []string{"s6"}, "s7"},
    			expected: "s1 s2 s3 s4  s5  s6 s7\n",
    		},
    	}
    	testBuffer := NewLineBuffer()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 12:38:25 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. cmd/endpoint_test.go

    		{[]string{"d1", "http://localhost/d2", "d3", "d4"}, fmt.Errorf("mixed style endpoints are not supported")},
    		{[]string{"http://example.org/d1", "https://example.com/d1", "http://example.net/d1", "https://example.edut/d1"}, fmt.Errorf("mixed scheme is not supported")},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jan 13 07:53:03 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top