Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for Indexer (0.35 sec)

  1. src/crypto/internal/nistec/p256_asm_s390x.s

    #undef Z1H
    #undef X2L
    #undef X2H
    #undef Y2L
    #undef Y2H
    #undef Z2L
    #undef Z2H
    #undef ZER
    #undef SEL1
    
    // ---------------------------------------
    // Constant time table access
    // Indexed from 1 to 15, with -1 offset
    // (index 0 is implicitly point at infinity)
    // func p256Select(res *P256Point, table *p256Table, idx int)
    #define P3ptr   R1
    #define P1ptr   R2
    #define COUNT   R4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         * {@code <groupId>:<artifactId>:<version>} for a POM profile or {@code external} for profiles from the
         * {@code settings.xml}.
         *
         * @return The identifiers of all injected profiles, indexed by the source from which the profiles originated, never
         *         {@code null}.
         */
        public Map<String, List<String>> getInjectedProfileIds() {
            return this.injectedProfileIds;
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      TF_RETURN_IF_ERROR(encapsulator.BuildOutputGraph(out.get(), library));
    
      *graph_out = std::move(out);
      return absl::OkStatus();
    }
    
    // Finds the types of the _Arg nodes, indexed by position.
    static Status GetArgTypes(const Graph& graph, DataTypeVector* types) {
      for (Node* n : graph.op_nodes()) {
        if (n->type_string() == kArgOp) {
          int index;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    					return
    				}
    			}
    			nc.podUpdated(pod, nil)
    		},
    	})
    	nc.podInformerSynced = podInformer.Informer().HasSynced
    	podInformer.Informer().AddIndexers(cache.Indexers{
    		nodeNameKeyIndex: func(obj interface{}) ([]string, error) {
    			pod, ok := obj.(*v1.Pod)
    			if !ok {
    				return []string{}, nil
    			}
    			if len(pod.Spec.NodeName) == 0 {
    				return []string{}, nil
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableSortedMap.java

                    keySet.asList().get(index), valueList.get(index));
              }
    
              @Override
              public Spliterator<Entry<K, V>> spliterator() {
                return CollectSpliterators.indexed(
                    size(), ImmutableSet.SPLITERATOR_CHARACTERISTICS, this::get);
              }
    
              @Override
              ImmutableCollection<Entry<K, V>> delegateCollection() {
                return EntrySet.this;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route.go

    	// Routes in the virtual host
    	Routes []*route.Route
    }
    
    // BuildSidecarVirtualHostWrapper creates virtual hosts from the given set of virtual Services
    // and a list of Services from the service registry. Services are indexed by FQDN hostnames.
    // The list of Services is also passed to allow maintaining consistent ordering.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM.rules

    ((ADDshiftLL|ORshiftLL|XORshiftLL) <typ.UInt16> [8] (SRLconst <typ.UInt16> [24] (SLLconst [16] x)) x) && buildcfg.GOARM.Version>=6 => (REV16 x)
    
    // use indexed loads and stores
    (MOVWload [0] {sym} (ADD ptr idx) mem) && sym == nil => (MOVWloadidx ptr idx mem)
    (MOVWstore [0] {sym} (ADD ptr idx) val mem) && sym == nil => (MOVWstoreidx ptr idx val mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    	// cycle can be accumulated into active once its complete.
    	active memRecordCycle
    
    	// future records the profile events we're counting for cycles
    	// that have not yet been published. This is ring buffer
    	// indexed by the global heap profile cycle C and stores
    	// cycles C, C+1, and C+2. Unlike active, these counts are
    	// only for a single cycle; they are not cumulative across
    	// cycles.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"field":   "The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed.  Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.\n\nExamples:\n  \"name\" - the field \"name\" on the current resource\n  \"items[0].name\" - the field \"name\" on the first array entry in \"items\"",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  10. src/runtime/mgcmark.go

    	work.nStackRoots = len(work.stackRoots)
    
    	work.markrootNext = 0
    	work.markrootJobs = uint32(fixedRootCount + work.nDataRoots + work.nBSSRoots + work.nSpanRoots + work.nStackRoots)
    
    	// Calculate base indexes of each root type
    	work.baseData = uint32(fixedRootCount)
    	work.baseBSS = work.baseData + uint32(work.nDataRoots)
    	work.baseSpans = work.baseBSS + uint32(work.nBSSRoots)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top