Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 314 for mixer (0.05 sec)

  1. src/cmd/compile/internal/reflectdata/helpers.go

    // representing the non-interface type.
    func CompareRType(pos src.XPos, n *ir.BinaryExpr) ir.Node {
    	assertOp2(n, ir.OEQ, ir.ONE)
    	base.AssertfAt(n.X.Type().IsInterface() != n.Y.Type().IsInterface(), n.Pos(), "expect mixed interface and non-interface, have %L and %L", n.X, n.Y)
    	if hasRType(n, n.RType, "RType") {
    		return n.RType
    	}
    	typ := n.X.Type()
    	if typ.IsInterface() {
    		typ = n.Y.Type()
    	}
    	return concreteRType(pos, typ)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 04:50:32 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.proto

    import "tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto";
    import "tensorflow/core/framework/tensor.proto";
    
    option cc_enable_arenas = true;
    
    // This file contains the definition of TF GraphDef-level mixed-precision
    // quantization configuration. The configuration will be used in the
    // quantization path to determine the following factors:
    // 1) What will be the quantization method for the model.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 06:31:19 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/net/http/header.go

    // hasToken reports whether token appears with v, ASCII
    // case-insensitive, with space or comma boundaries.
    // token must be all lowercase.
    // v may contain mixed cased.
    func hasToken(v, token string) bool {
    	if len(token) > len(v) || token == "" {
    		return false
    	}
    	if v == token {
    		return true
    	}
    	for sp := 0; sp <= len(v)-len(token); sp++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classpath/TransformedClassPathTest.groovy

            cp.asURLs == [file("original.jar").toURI().toURL()]
            cp.asURLArray == [file("original.jar").toURI().toURL()].toArray()
        }
    
        def "transformed classpath can be mixed with non-transformed one"() {
            given:
            TransformedClassPath transformed = transformedClassPath("1.jar": "t1.jar")
            ClassPath nonTransformed = DefaultClassPath.of(file("2.jar"))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 11:14:30 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/idea/IdeaModelBuilderTest.groovy

            ideaProject.modules.find { it.name == 'child2' }.javaLanguageSettings.targetBytecodeVersion == null
        }
    
        def "can have mixed bytecode level"() {
            when:
            [project, child1, child2].each {
                it.plugins.apply(JavaPlugin)
            }
            project.targetCompatibility = "1.5"
            child1.targetCompatibility = "1.6"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 09 11:38:46 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  6. src/mime/multipart/multipart_test.go

    		s.done = nil
    	}
    	return 0, io.EOF
    }
    
    // TestMultipartStreamReadahead tests that PartReader does not block
    // on reading past the end of a part, ensuring that it can be used on
    // a stream like multipart/x-mixed-replace. See golang.org/issue/15431
    func TestMultipartStreamReadahead(t *testing.T) {
    	testBody1 := `
    This is a multi-part message.  This line is ignored.
    --MyBoundary
    foo-bar: baz
    
    Body
    --MyBoundary
    `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:36:47 UTC 2022
    - 30.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/update_control_dependencies.mlir

        tf_executor.fetch
      }
      func.return
    }
    
    // -----
    
    // Tests mixed and nested groups and branches.
    // We expect the following dependency chains after the pass:
    //   A -> {B, C} -> D -> E -> fetch.
    func.func @mixed_groups_and_branches_nested() {
      tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 03 18:12:49 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

            when:
            render cannotWriteToReservedLocation {
                type('SomeTransform').property('mixed')
                forbiddenAt(reserved)
                includeLink()
            }
    
            then:
            outputEquals """
    Type 'SomeTransform' property 'mixed' points to '${reserved}' which is managed by Gradle.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/DefaultConvention.java

            }
            return plugins;
        }
    
        @Override
        public DynamicObject getExtensionsAsDynamicObject() {
            // This implementation of Convention doesn't log a deprecation warning
            // because it mixes both extensions and conventions.
            // Instead, the returned object logs a deprecation warning when
            // a convention is actually accessed.
            return extensionsDynamicObject;
        }
    
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. .github/CODEOWNERS

    ##
    
    # bt-unassigned-maintainers must be the first owner
    # All directories that are not explicitly listed below are considered
    # unassigned. This means that the ownership may be unknown, lost or
    # mixed across several groups.
    * @gradle/bt-unassigned-maintainers
    
    # Build infrastructure
    .teamcity/                                  @gradle/bt-developer-productivity
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top