Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 204 for dropped (0.13 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/math.mlir

      %0 = "tfl.pseudo_const" () {value = dense<1.0> : tensor<4xf32>} : () -> tensor<4xf32> loc("Const")
      // Confirm that attributes that cannot be stored in the flatbuffer options
      // for a given operator are dropped silently.
      %1 = "tfl.squared_difference"(%arg0, %0) {fused_activation_function = "NONE"} : (tensor<4xf32>, tensor<4xf32>) -> tensor<4xf32> loc("squared_difference")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kubeletconfig/util/codec/codec.go

    	if err != nil {
    		// Try strict decoding first. If that fails decode with a lenient
    		// decoder, which has only v1beta1 registered, and log a warning.
    		// The lenient path is to be dropped when support for v1beta1 is dropped.
    		if !runtime.IsStrictDecodingError(err) {
    			return nil, fmt.Errorf("failed to decode: %w", err)
    		}
    
    		var lenientErr error
    		_, lenientCodecs, lenientErr := codec.NewLenientSchemeAndCodecs(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 21:48:29 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta3/conversion_test.go

    			args: []kubeadmapi.Arg{
    				{Name: "a", Value: "b"},
    				{Name: "c", Value: "d"},
    			},
    			expectedArgs: map[string]string{"a": "b", "c": "d"},
    		},
    		{
    			name: "duplicates are dropped",
    			args: []kubeadmapi.Arg{
    				{Name: "a", Value: "b"},
    				{Name: "c", Value: "d1"},
    				{Name: "c", Value: "d2"},
    			},
    			expectedArgs: map[string]string{"a": "b", "c": "d2"},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/integTest/groovy/org/gradle/integtests/fixtures/ScalaCoverage.groovy

                return VersionCoverage.versionsAtLeast(SCALA_2, "2.13.0")
            }
            if (javaVersion.isCompatibleWith(JavaVersion.VERSION_1_8)) {
                // Java 8 support not dropped yet
                return SCALA_2
            }
            if (javaVersion.isCompatibleWith(JavaVersion.VERSION_1_6)) {
                // 2.12+ requires Java 8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. doc/next/7-ports.md

    The `GORISCV64` environment variable defaults to `rva20u64`.
    
    ### Wasm {#wasm}
    
    <!-- go.dev/issue/63718 -->
    The `go_wasip1_wasm_exec` script in `GOROOT/misc/wasm` has dropped support
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    If a build declares its inputs and outputs correctly, this should not happen.
    So it's either a bug we must fix or your build lacks declaration for some inputs or outputs.
    
    VFS state dropped due to lost state::
    Did you receive a message that reads `Dropped VFS state due to lost state` during a build?
    _Please https://gradle-community.slack.com/app_redirect?channel=file-system-watching[let us know on the Gradle community Slack]._
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependencyLockingProvider.java

         */
        ListProperty<String> getIgnoredDependencies();
    
        /**
         * Confirms that the given lock is not locked.
         * This allows the lock state for the lock to be dropped if it existed before.
         *
         * @param lockId the ID of the lock to confirm is not locked
         */
        void confirmNotLocked(String lockId);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. src/go/types/package.go

    )
    
    // A Package describes a Go package.
    type Package struct {
    	path      string
    	name      string
    	scope     *Scope
    	imports   []*Package
    	complete  bool
    	fake      bool   // scope lookup errors are silently dropped if package is fake (internal use only)
    	cgo       bool   // uses of this package will be rewritten into uses of declarations from _cgo_gotypes.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/Protocol.kt

       * requests on the same socket, and server-push. HTTP/1.1 semantics are layered on SPDY/3.
       *
       * Current versions of OkHttp do not support this protocol.
       */
      @Deprecated("OkHttp has dropped support for SPDY. Prefer {@link #HTTP_2}.")
      SPDY_3("spdy/3.1"),
    
      /**
       * The IETF's binary-framed protocol that includes header compression, multiplexing multiple
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/platform/Jdk8WithJettyBootPlatform.kt

        try {
          val provider = Proxy.getInvocationHandler(getMethod.invoke(null, sslSocket)) as AlpnProvider
          if (!provider.unsupported && provider.selected == null) {
            log("ALPN callback dropped: HTTP/2 is disabled. " + "Is alpn-boot on the boot class path?")
            return null
          }
          return if (provider.unsupported) null else provider.selected
        } catch (e: InvocationTargetException) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top