Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 314 for mixer (1.69 sec)

  1. android/guava/src/com/google/common/io/BaseEncoding.java

       *     lower-case characters
       */
      public abstract BaseEncoding lowerCase();
    
      /**
       * Returns an encoding that behaves equivalently to this encoding, but decodes letters without
       * regard to case.
       *
       * @throws IllegalStateException if the alphabet used by this encoding contains mixed upper- and
       *     lower-case characters
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/execution/commandline/CommandLineTaskConfigurerSpec.groovy

        }
    
        def "configures the Boolean option"() {
            when:
            configurer.configureTasks([task], ['--someFlag2'])
            then:
            task.someFlag2
        }
    
        def "configures mixed options"() {
            when:
            configurer.configureTasks([task, task2], ['--someFlag', '--content', 'Hey!'])
            then:
            task.someFlag
            task2.someFlag
            task.content == 'Hey!'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 09 09:06:36 UTC 2020
    - 6.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/stablehlo/quantization.cc

      }
    
      absl::StatusOr<mlir::ModuleOp> quantized_module_op;
      // Currently, only StaticRangePtq or WeightOnlyPtq is supported.
      // Consider merging the pipelines to address mixed algorithm models.
      if (HasQuantizationMethod(updated_config.specs(),
                                Method::MethodCase::kStaticRangePtq)) {
        StaticRangePtqComponent static_range_ptq_component(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 10:49:12 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/test/cmd/init_test.go

    			expected: false,
    		},
    		{
    			name:     "can load v1beta3 config",
    			args:     "--config=testdata/init/v1beta3.yaml",
    			expected: true,
    		},
    		{
    			name:     "don't allow mixed arguments v1beta3",
    			args:     "--kubernetes-version=1.11.0 --config=testdata/init/v1beta3.yaml",
    			expected: false,
    		},
    		{
    			name:     "can load current component config",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:03:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginConvention.java

    import org.gradle.api.JavaVersion;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.java.archives.Manifest;
    import org.gradle.api.tasks.SourceSetContainer;
    
    import java.io.File;
    
    /**
     * Is mixed into the project when applying the {@link org.gradle.api.plugins.JavaBasePlugin}.
     *
     * @deprecated Replaced by {@link JavaPluginExtension}. This class is scheduled for removal in Gradle 9.0.
     */
    @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/DependencyInjectingInstantiator.java

                throw new IllegalArgumentException(formatter.toString());
            }
            if (parameterTypes.length == parameters.length) {
                // No services to be mixed in
                return verifyParameters(constructor, parameters);
            } else {
                return addServicesToParameters(type, constructor, services, parameters);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/transport/RepositoryTransportFactoryTest.groovy

            InvalidUserDataException e = thrown()
            e.message == "Not a supported repository protocol 'unsupported': valid protocols are [protocol1, protocol2a, protocol2b]"
        }
    
        def "cannot creates a transport for mixed url scheme"() {
            when:
            createTransport(['protocol1', 'protocol2b'] as Set, null, [])
    
            then:
            InvalidUserDataException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. src/crypto/ecdsa/ecdsa.go

    // Package ecdsa implements the Elliptic Curve Digital Signature Algorithm, as
    // defined in FIPS 186-4 and SEC 1, Version 2.0.
    //
    // Signatures generated by this package are not deterministic, but entropy is
    // mixed with the private key and the message, achieving the same level of
    // security in case of randomness source failure.
    //
    // Operations involving private keys are implemented using constant-time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. src/debug/dwarf/type.go

    	// because it may need to resolve cycles in a different order than
    	// readType encounters them.
    	if fixups == nil {
    		var fixer typeFixer
    		defer func() {
    			fixer.apply()
    		}()
    		fixups = &fixer
    	}
    
    	// Parse type from Entry.
    	// Must always set typeCache[off] before calling
    	// d.readType recursively, to handle circular types correctly.
    	var typ Type
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/connection/RouteSelector.kt

              }
    
              connectionUser.dnsEnd(socketHost, result)
              result
            }
    
          // Try each address for best behavior in mixed IPv4/IPv6 environments.
          val orderedAddresses =
            when {
              fastFallback -> reorderForHappyEyeballs(addresses)
              else -> addresses
            }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Mar 06 17:33:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top