Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 259 for dedupes (0.38 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/batch_function_deduplicate.mlir

      func.return %arg0, %arg1 : tensor<?x?xi32>, tensor<?x?xi32>
    }
    
    // Batch function in batch_1 uses the same shared_name as the one in batch_0,
    // so compute_1 is deduped, and compute_0 will be used here.
    // CHECK-LABEL: func private @batch_1
    // CHECK: f = @compute_0
    // CHECK-NOT: f = @compute_1
    func.func private @batch_1(%arg0: tensor<?x?xi32>) -> tensor<*xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/slices.go

    package slices
    
    // Map turns a []T1 to a []T2 using a mapping function.
    func Map[T1, T2 any](s []T1, f func(T1) T2) []T2 {
    	r := make([]T2, len(s))
    	for i, v := range s {
    		r[i] = f(v)
    	}
    	return r
    }
    
    // Reduce reduces a []T1 to a single value using a reduction function.
    func Reduce[T1, T2 any](s []T1, initializer T2, f func(T2, T1) T2) T2 {
    	r := initializer
    	for _, v := range s {
    		r = f(r, v)
    	}
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. pkg/probe/dialer_others.go

    limitations under the License.
    */
    
    package probe
    
    import (
    	"net"
    	"syscall"
    )
    
    // ProbeDialer returns a dialer optimized for probes to avoid lingering sockets on TIME-WAIT state.
    // The dialer reduces the TIME-WAIT period to 1 seconds instead of the OS default of 60 seconds.
    // Using 1 second instead of 0 because SO_LINGER socket option to 0 causes pending data to be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 16:57:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. docs/es/docs/advanced/path-operation-advanced-configuration.md

    Si quieres usar tus nombres de funciones de API como `operationId`s, puedes iterar sobre todos ellos y sobrescribir `operation_id` de cada *operación de path* usando su `APIRoute.name`.
    
    Deberías hacerlo después de adicionar todas tus *operaciones de path*.
    
    ```Python hl_lines="2 12 13 14 15 16 17 18 19 20 21 24"
    {!../../../docs_src/path_operation_advanced_configuration/tutorial002.py!}
    ```
    
    !!! tip "Consejo"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jul 04 12:49:31 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/status/dialer_others.go

    )
    
    // copied from https://github.com/kubernetes/kubernetes/blob/v1.27.0-alpha.1/pkg/probe/dialer_others.go#L27
    // ProbeDialer returns a dialer optimized for probes to avoid lingering sockets on TIME-WAIT state.
    // The dialer reduces the TIME-WAIT period to 1 seconds instead of the OS default of 60 seconds.
    // Using 1 second instead of 0 because SO_LINGER socket option to 0 causes pending data to be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 28 02:39:05 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/dialer_windows.go

    )
    
    // copied from https://github.com/kubernetes/kubernetes/blob/v1.27.0-alpha.1/pkg/probe/dialer_windows.go#L27
    // ProbeDialer returns a dialer optimized for probes to avoid lingering sockets on TIME-WAIT state.
    // The dialer reduces the TIME-WAIT period to 1 seconds instead of the OS default of 60 seconds.
    // Using 1 second instead of 0 because SO_LINGER socket option to 0 causes pending data to be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 28 02:39:05 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/types.go

    	CgroupName(name string) CgroupName
    	// Pids scans through all subsystems to find pids associated with specified cgroup.
    	Pids(name CgroupName) []int
    	// ReduceCPULimits reduces the CPU CFS values to the minimum amount of shares.
    	ReduceCPULimits(cgroupName CgroupName) error
    	// MemoryUsage returns current memory usage of the specified cgroup, as read from the cgroupfs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. pkg/volume/util/fs/fs.go

    			return fmt.Errorf("unsupported fileinfo; could not convert to stat_t")
    		}
    
    		if s.Dev != topLevelStat.Dev {
    			// don't descend into directories on other devices
    			return filepath.SkipDir
    		}
    
    		// Dedupe hardlinks
    		if s.Nlink > 1 {
    			if _, ok := dedupedInodes[s.Ino]; !ok {
    				dedupedInodes[s.Ino] = struct{}{}
    			} else {
    				return nil
    			}
    		}
    
    		if consumption == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 20 02:56:02 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.cc

        while (!todo.empty()) {
          Value value = todo.front();
          todo.pop();
          // All operations that have all their inputs available are good to go.
          // Uses, not Users, in case getUsers ever dedups.
          for (OpOperand& operand : value.getUses()) {
            Operation* user = ancestor[operand.getOwner()];
            remaining_incoming_data_edges[user]--;
            if (remaining_incoming_data_edges[user] == 0 &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/filters/warning.go

    	if r.written >= truncateAtTotalRunes && r.truncating {
    		return
    	}
    
    	// init if needed
    	if r.recorded == nil {
    		r.recorded = map[string]bool{}
    	}
    
    	// dedupe if already warned
    	if r.recorded[text] {
    		return
    	}
    	r.recorded[text] = true
    	r.ordered = append(r.ordered, recordedWarning{agent: agent, text: text})
    
    	// truncate on a rune boundary, if needed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 3.6K bytes
    - Viewed (0)
Back to top