Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for getDirs (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

              "format");
      }
    
      if (!IsOfRankOrUnranked(op.getBias(), 1))
        return op.emitOpError("requires bias operand to have rank exactly one");
    
      RankedTensorType value_ty =
          mlir::dyn_cast<RankedTensorType>(op.getValue().getType());
      RankedTensorType bias_ty =
          mlir::dyn_cast<RankedTensorType>(op.getBias().getType());
      if (!bias_ty || !value_ty) return success();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/container_manager_linux.go

    	// Move non-kernel PIDs to the system container.
    	// Only keep errors on latest attempt.
    	var finalErr error
    	for i := 0; i <= 10; i++ {
    		allPids, err := cmutil.GetPids(rootCgroupPath)
    		if err != nil {
    			finalErr = fmt.Errorf("failed to list PIDs for root: %v", err)
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

                queue.add(targetGoal);
                List<ModelGoal> newDependencies = new ArrayList<ModelGoal>();
                while (!queue.isEmpty()) {
                    ModelGoal goal = queue.getFirst();
    
                    if (goal.state == ModelGoal.State.Achieved) {
                        // Already reached this goal
                        queue.removeFirst();
                        continue;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  4. okhttp/api/okhttp.api

    	public final fun check (Ljava/lang/String;[Ljava/security/cert/Certificate;)V
    	public fun equals (Ljava/lang/Object;)Z
    	public final fun findMatchingPins (Ljava/lang/String;)Ljava/util/List;
    	public final fun getPins ()Ljava/util/Set;
    	public fun hashCode ()I
    	public static final fun pin (Ljava/security/cert/Certificate;)Ljava/lang/String;
    	public static final fun sha1Hash (Ljava/security/cert/X509Certificate;)Lokio/ByteString;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  5. pkg/controller/controller_utils_test.go

    			}
    
    			assert.True(t, uidExp.SatisfiedExpectations(logger, rcKey),
    				"Controller %v didn't satisfy expectations after deletion", rcKey)
    
    			uidExp.DeleteExpectations(logger, rcKey)
    
    			assert.Nil(t, uidExp.GetUIDs(rcKey),
    				"Failed to delete uid expectations for %v", rcKey)
    		})
    	}
    }
    
    func TestCreatePodsWithGenerateName(t *testing.T) {
    	ns := metav1.NamespaceDefault
    	generateName := "hello-"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

              IRMapping mapping;
              indexed_regions.value().cloneInto(&target_region, mapping);
            }
          }
          for (auto output : outputs_replaced) {
            output.getFirst().replaceAllUsesWith(
                quantized_op->getResult(output.getSecond()));
          }
    
          // To verify the numericals, the original floating-point ops are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/MapMakerInternalMap.java

        <T> void clearReferenceQueue(ReferenceQueue<T> referenceQueue) {
          while (referenceQueue.poll() != null) {}
        }
    
        /** Returns first entry of bin for given hash. */
        @CheckForNull
        E getFirst(int hash) {
          // read this volatile field only once
          AtomicReferenceArray<E> table = this.table;
          return table.get(hash & (table.length() - 1));
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     *
     * <ul>
     *
     * <li>The {@code Task} object itself. This includes any property getters and setters declared by the {@code Task}
     * implementation class.  The properties of this scope are readable or writable based on the presence of the
     * corresponding getter and setter methods.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        <T> void clearReferenceQueue(ReferenceQueue<T> referenceQueue) {
          while (referenceQueue.poll() != null) {}
        }
    
        /** Returns first entry of bin for given hash. */
        @CheckForNull
        E getFirst(int hash) {
          // read this volatile field only once
          AtomicReferenceArray<E> table = this.table;
          return table.get(hash & (table.length() - 1));
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Iterables.java

       * @return the first element of {@code iterable} or the default value
       * @since 7.0
       */
      @ParametricNullness
      public static <T extends @Nullable Object> T getFirst(
          Iterable<? extends T> iterable, @ParametricNullness T defaultValue) {
        return Iterators.getNext(iterable.iterator(), defaultValue);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.5K bytes
    - Viewed (0)
Back to top