Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 157 for Element (0.12 sec)

  1. src/html/template/exec_test.go

    	W0     W
    	W1, W2 *W
    	// Slices
    	SI      []int
    	SICap   []int
    	SIEmpty []int
    	SB      []bool
    	// Arrays
    	AI [3]int
    	// Maps
    	MSI      map[string]int
    	MSIone   map[string]int // one element, for deterministic output
    	MSIEmpty map[string]int
    	MXI      map[any]int
    	MII      map[int]int
    	MI32S    map[int32]string
    	MI64S    map[int64]string
    	MUI32S   map[uint32]string
    	MUI64S   map[uint64]string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. src/regexp/syntax/parse.go

    // and returns that regexp.
    func (p *parser) op(op Op) *Regexp {
    	re := p.newRegexp(op)
    	re.Flags = p.flags
    	return p.push(re)
    }
    
    // repeat replaces the top stack element with itself repeated according to op, min, max.
    // before is the regexp suffix starting at the repetition operator.
    // after is the regexp suffix following after the repetition operator.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    	// The value of that entry is the *v1.Pod at the time that scheduling of that
    	// pod started, which can be useful for logging or debugging.
    	inFlightPods map[types.UID]*list.Element
    
    	// inFlightEvents holds the events received by the scheduling queue
    	// (entry value is clusterEvent) together with in-flight pods (entry
    	// value is *v1.Pod). Entries get added at the end while the mutex is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        /**
         * Returns a filtered list of classpath elements. This method is invoked when the caller
         * requested that all dependencies are placed on the classpath, with no module-path element.
         *
         * @param scopeFilter a filter returning {@code true} for the artifact scopes to accept.
         * @param includeTestDir whether to include the test directory in the classpath elements.
         * @return paths of all artifacts placed on the classpath.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  5. src/runtime/map.go

    	if !ok {
    		// reflect wants nil for a missing element
    		elem = nil
    	}
    	return elem
    }
    
    //go:linkname reflect_mapaccess_faststr reflect.mapaccess_faststr
    func reflect_mapaccess_faststr(t *maptype, h *hmap, key string) unsafe.Pointer {
    	elem, ok := mapaccess2_faststr(t, h, key)
    	if !ok {
    		// reflect wants nil for a missing element
    		elem = nil
    	}
    	return elem
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    	}
    	return cfg.Clone()
    }
    
    type connLRU struct {
    	ll *list.List // list.Element.Value type is of *persistConn
    	m  map[*persistConn]*list.Element
    }
    
    // add adds pc to the head of the linked list.
    func (cl *connLRU) add(pc *persistConn) {
    	if cl.ll == nil {
    		cl.ll = list.New()
    		cl.m = make(map[*persistConn]*list.Element)
    	}
    	ele := cl.ll.PushFront(pc)
    	if _, ok := cl.m[pc]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. src/text/template/exec_test.go

    	W0     W
    	W1, W2 *W
    	// Slices
    	SI      []int
    	SICap   []int
    	SIEmpty []int
    	SB      []bool
    	// Arrays
    	AI [3]int
    	// Maps
    	MSI      map[string]int
    	MSIone   map[string]int // one element, for deterministic output
    	MSIEmpty map[string]int
    	MXI      map[any]int
    	MII      map[int]int
    	MI32S    map[int32]string
    	MI64S    map[int64]string
    	MUI32S   map[uint32]string
    	MUI64S   map[uint64]string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Each nested input in the iterable is assigned a name, which by default is the dollar sign followed by the index in the iterable, e.g. `$2`.
    If an element of the iterable implements `link:{javadocPath}/org/gradle/api/Named.html[Named]`, then the name is used as property name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  9. tensorflow/cc/gradients/math_grad.cc

      // If the input contains a zero, the division is impossible but
      // if we take the calculation that gave the first gradient
      // (3 * 5 * 6)/3 is equal to 5 * 6
      // the trick will be to cumprod the elements on the axis without
      // the element at the current position (3 in the example above).
      // We will take as example:
      // [
      //   [
      //     [3.0, 4.0],
      //     [5.0, 6.0],
      //     [7.0, 8.0]
      //   ],
      //   [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    the<SourceSetContainer>()["main"].srcDir("src/core/java")
    ----
    
    The snippet above also demonstrates one way of configuring the elements of a project extension that is a container.
    
    ==== Elements in project-extension containers
    
    Container-based project extensions, such as `SourceSetContainer`, also allow you to configure the elements held by them.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top