Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 74 for Identical (0.28 sec)

  1. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

        // conversion (even after quantization). Some TFL ops like unidirectional
        // sequence lstm will have stateful operands and some optimization passes
        // will merge those operands if they have identical values & types. However,
        // it's not desired by TFL. This pass serves as a "fix" pass to split the
        // merged inputs until we have 1st class variable support or reuse
        // tf.variable to model this.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

        }
    
        private
        fun reportUniqueValueSourceInput(trace: PropertyTrace, displayName: String?, typeName: String) {
            // We assume different types won't ever produce identical display names
            if (reportedValueSources.add(displayName ?: typeName)) {
                reportValueSourceInput(trace, displayName, typeName)
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  3. pkg/controlplane/instance.go

    			IPRepairInterval:        c.Extra.RepairServicesInterval,
    		},
    	})
    	if err != nil {
    		return nil, err
    	}
    
    	// The order here is preserved in discovery.
    	// If resources with identical names exist in more than one of these groups (e.g. "deployments.apps"" and "deployments.extensions"),
    	// the order of this list determines which group an unqualified resource name (e.g. "deployments") should prefer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. src/net/url/url.go

    // converting each 3-byte encoded substring of the form "%AB" into the
    // hex-decoded byte 0xAB. It returns an error if any % is not followed
    // by two hexadecimal digits.
    //
    // PathUnescape is identical to [QueryUnescape] except that it does not
    // unescape '+' to ' ' (space).
    func PathUnescape(s string) (string, error) {
    	return unescape(s, encodePathSegment)
    }
    
    // unescape unescapes a string; the mode specifies
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

            then:
            result.assertTasksExecutedAndNotSkipped(':update1', ':update2', ':verify1', ':verify2')
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "when two identical archives have the same hashes and same decompression cache entry is reused"() {
            given: "2 archive files"
            createTar('test1.tar') {
                subdir1 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_ops_to_mhlo.cc

            op.getOutputQuantizationAxis(), rewriter);
        if (failed(output_type)) {
          return failure();
        }
    
        // lhs, rhs, output scales and zero_points are guaranteed (by the TF
        // quantizer) to be identical, respectively.
        auto result = rewriter.create<chlo::BroadcastAddOp>(
            op->getLoc(), *output_type, lhs, *rhs_or, broadcast_dims);
        rewriter.replaceOpWithNewOp<mhlo::BitcastConvertOp>(
            op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  7. pkg/kubelet/util/manager/cache_based_manager_test.go

    	assert.Equal(t, 0, refs("ns1", "s6"))
    	assert.Equal(t, 0, refs("ns1", "s60"))
    	assert.Equal(t, 1, refs("ns1", "s7"))
    	assert.Equal(t, 1, refs("ns1", "s70"))
    
    	// Check the interleaved registerpod/unregisterpod with identical names and different uids scenario
    	secret1 := secretsToAttach{
    		containerEnvSecrets: []envSecrets{
    			{envVarNames: []string{"secret1"}},
    		},
    	}
    	secret2 := secretsToAttach{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Invalid"},                                                   // unused value
    	{name: "SPanchored", typ: "Uintptr", argLength: 2, zeroWidth: true}, // arg0 = SP, arg1 = mem. Result is identical to arg0, but cannot be scheduled before memory state arg1.
    
    	// Memory operations
    	{name: "Load", argLength: 2},                          // Load from arg0.  arg1=memory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/net/InetAddresses.java

        } catch (UnknownHostException e) {
          throw new AssertionError(e);
        }
      }
    
      /**
       * Returns the string representation of an {@link InetAddress}.
       *
       * <p>For IPv4 addresses, this is identical to {@link InetAddress#getHostAddress()}, but for IPv6
       * addresses, the output follows <a href="http://tools.ietf.org/html/rfc5952">RFC 5952</a> section
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/shell.go

    func (sh *Shell) Print(a ...any) {
    	sh.printLock.Lock()
    	defer sh.printLock.Unlock()
    	sh.printFunc(a...)
    }
    
    func (sh *Shell) printLocked(a ...any) {
    	sh.printFunc(a...)
    }
    
    // WithAction returns a Shell identical to sh, but bound to Action a.
    func (sh *Shell) WithAction(a *Action) *Shell {
    	sh2 := *sh
    	sh2.action = a
    	return &sh2
    }
    
    // Shell returns a shell for running commands on behalf of Action a.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top