Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for getg (0.04 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    ((SETNE|SETL|SETG|SETB|SETA)     (FlagEQ))     => (MOVLconst [0])
    ((SETNE|SETL|SETLE|SETB|SETBE)   (FlagLT_ULT)) => (MOVLconst [1])
    ((SETEQ|SETG|SETGE|SETA|SETAE)   (FlagLT_ULT)) => (MOVLconst [0])
    ((SETNE|SETL|SETLE|SETA|SETAE)   (FlagLT_UGT)) => (MOVLconst [1])
    ((SETEQ|SETG|SETGE|SETB|SETBE)   (FlagLT_UGT)) => (MOVLconst [0])
    ((SETNE|SETG|SETGE|SETB|SETBE)   (FlagGT_ULT)) => (MOVLconst [1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

        abstract boolean isSupportsBuildOperations()
    
        abstract DomainObjectCollection<T> getContainer()
    
        abstract T getA()
    
        abstract T getB()
    
        abstract T getC()
    
        abstract <S extends T> S getD()
    
        Class<T> getType() {
            return a.class
        }
    
        @SuppressWarnings("GrUnnecessaryPublicModifier")
        public <S extends T> Class<S> getOtherType() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

          }
          Operation* symbol = symbol_table.lookup(caller.getF());
          if (symbol == nullptr) {
            func.emitError() << "Symbol not found in SymbolTable: "
                             << caller.getF();
            return LogicalResult::failure();
          }
          if (!llvm::isa<func::FuncOp>(symbol)) {
            func.emitError() << "Invalid callee: " << caller.getF();
            return LogicalResult::failure();
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        auto shape = rewriter.create<ConstOp>(
            loc, DenseElementsAttr::get(
                     shape_type, {static_cast<int>(x_type.getDimSize(0)), 1}));
        auto indices = rewriter.create<ReshapeOp>(loc, op.getX(), shape);
    
        rewriter.replaceOpWithNewOp<TensorScatterUpdateOp>(
            op, result_type, op.getX(), indices, updates);
        return success();
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       */
      interface InternalEntry<K, V, E extends InternalEntry<K, V, E>> {
        /** Gets the next entry in the chain. */
        E getNext();
    
        /** Gets the entry's hash. */
        int getHash();
    
        /** Gets the key for this entry. */
        K getKey();
    
        /** Gets the value for the entry. */
        V getValue();
      }
    
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                this.injectedProfileIds.put(source, new ArrayList<>(injectedProfileIds));
            } else {
                this.injectedProfileIds.remove(source);
            }
        }
    
        /**
         * Gets the identifiers of all profiles that contributed to this project's effective model. This includes active
         * profiles from the project's POM and all its parent POMs as well as from external sources like the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  7. pkg/kubelet/nodestatus/setters_test.go

    						OSImage:                 "ContainerOSVersion",
    						ContainerRuntimeVersion: "RuntimeType://RuntimeVersion",
    						KubeletVersion:          version.Get().String(),
    						KubeProxyVersion:        version.Get().String(),
    					},
    				},
    			},
    			kubeProxyVersion: true,
    		},
    		{
    			desc:             "error getting version info",
    			node:             &v1.Node{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. pkg/controller/replicaset/replica_set_test.go

    					numReplicas, c.Status.Replicas)
    			}
    		default:
    			t.Errorf("Unexpected action %+v", a)
    			break
    		}
    	}
    	if gets != 1 || updates != 2 {
    		t.Errorf("Expected 1 get and 2 updates, got %d gets %d updates", gets, updates)
    	}
    }
    
    // TODO: This test is too hairy for a unittest. It should be moved to an E2E suite.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    include::sample[dir="snippets/kotlinDsl/containers-api/kotlin",files="build.gradle.kts[tags=api]"]
    ====
    <1> Gets a reference of type `Task` to the existing task named `check`
    <2> Registers a new untyped task named `myTask1`
    <3> Gets a reference to the existing task named `compileJava` of type `JavaCompile`
    <4> Registers a new task named `myCopy1` of type `Copy`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		if len(tMessage) != 0 {
    			if len(cStatus.Message) != 0 {
    				cStatus.Message += ": "
    			}
    			cStatus.Message += tMessage
    		}
    	}
    	return cStatus
    }
    
    // getPodContainerStatuses gets all containers' statuses for the pod.
    func (m *kubeGenericRuntimeManager) getPodContainerStatuses(ctx context.Context, uid kubetypes.UID, name, namespace string) ([]*kubecontainer.Status, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top