Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for outLines (0.16 sec)

  1. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

      }) {device = "tpu0"} : () -> tensor<?xi32>
      %2 = "tf.D"(%1) : (tensor<?xi32>) -> tensor<?xi32>
      return %2 : tensor<?xi32>
    ```
    ### `-tf-device-cluster-outlining`
    
    _Outlines regions of tf_device.cluster operations_
    
    This pass outlines the body of a `tf_device.cluster` into a function and
    replaces the `tf_device.cluster` op with an equivalent `tf_device.cluster_func`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

    a {
    	background: transparent;
    }
    
    /** Address `outline` inconsistency between Chrome and other browsers. */
    a:focus {
    	outline: thin dotted;
    }
    
    /** Improve readability when focused and also mouse hovered in all browsers. */
    a:active,
    a:hover {
    	outline: 0;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. src/time/time.go

    //
    // Times measured as an int64 seconds since the year 1970 are called Unix
    // times.
    //
    // It is tempting to just use the year 1 as the absolute epoch, defining
    // that the routines are only valid for years >= 1. However, the
    // routines would then be invalid when displaying the epoch in time zones
    // west of UTC, since it is year 0. It doesn't seem tenable to say that
    // printing the zero time correctly isn't supported in half the time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool.go

    		g.Go(func() error {
    			// Get the set where it would be placed.
    			storageInfos[index] = getDiskInfos(ctx, pool.getHashedSet(object).getDisks()...)
    			return nil
    		}, index)
    	}
    
    	// Wait for the go routines.
    	g.Wait()
    
    	for i, zinfo := range storageInfos {
    		if zinfo == nil {
    			serverPools[i] = poolAvailableSpace{Index: i}
    			continue
    		}
    		var available uint64
    		if !isMinioMetaBucketName(bucket) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/CharMatcher.java

      void setBits(BitSet table) {
        for (int c = Character.MAX_VALUE; c >= Character.MIN_VALUE; c--) {
          if (matches((char) c)) {
            table.set(c);
          }
        }
      }
    
      // Text processing routines
    
      /**
       * Returns {@code true} if a character sequence contains at least one matching BMP character.
       * Equivalent to {@code !matchesNoneOf(sequence)}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    		counter:                     counter,
    		seatDemandIntegratorSubject: seatDemandIntegratorSubject,
    	}.exercise(t)
    }
    
    // TestContextCancel tests cancellation of a request's context.
    // The outline is:
    //  1. Use a concurrency limit of 1.
    //  2. Start request 1.
    //  3. Use a fake clock for the following logic, to insulate from scheduler noise.
    //  4. The exec fn of request 1 starts request 2, which should wait
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/CharMatcher.java

      void setBits(BitSet table) {
        for (int c = Character.MAX_VALUE; c >= Character.MIN_VALUE; c--) {
          if (matches((char) c)) {
            table.set(c);
          }
        }
      }
    
      // Text processing routines
    
      /**
       * Returns {@code true} if a character sequence contains at least one matching BMP character.
       * Equivalent to {@code !matchesNoneOf(sequence)}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			klog.V(4).InfoS("Determined the ip for pod after sandbox changed", "IPs", podIPs, "pod", klog.KObj(pod))
    		}
    	}
    
    	// the start containers routines depend on pod ip(as in primary pod ip)
    	// instead of trying to figure out if we have 0 < len(podIPs)
    	// everytime, we short circuit it here
    	podIP := ""
    	if len(podIPs) != 0 {
    		podIP = podIPs[0]
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. cmd/iam-store.go

    	}
    	c.updatedAt = time.Now()
    	return nil
    }
    
    // IAMStorageAPI defines an interface for the IAM persistence layer
    type IAMStorageAPI interface {
    	// The role of the read-write lock is to prevent go routines from
    	// concurrently reading and writing the IAM storage. The (r)lock()
    	// functions return the iamCache. The cache can be safely written to
    	// only when returned by `lock()`.
    	lock() *iamCache
    	unlock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  10. src/time/time_test.go

    		t := UnixMicro(usec)
    		return t.UnixMicro() == usec
    	}
    	cfg := &quick.Config{MaxCount: 10000}
    	if err := quick.Check(f, cfg); err != nil {
    		t.Fatal(err)
    	}
    }
    
    // The time routines provide no way to get absolute time
    // (seconds since zero), but we need it to compute the right
    // answer for bizarre roundings like "to the nearest 3 ns".
    // Compute as t - year1 = (t - 1970) + (1970 - 2001) + (2001 - 1).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
Back to top