Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 166 for elts (0.08 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Comment.Slash", Field, 0},
    		{"Comment.Text", Field, 0},
    		{"CommentGroup", Type, 0},
    		{"CommentGroup.List", Field, 0},
    		{"CommentMap", Type, 1},
    		{"CompositeLit", Type, 0},
    		{"CompositeLit.Elts", Field, 0},
    		{"CompositeLit.Incomplete", Field, 11},
    		{"CompositeLit.Lbrace", Field, 0},
    		{"CompositeLit.Rbrace", Field, 0},
    		{"CompositeLit.Type", Field, 0},
    		{"Con", Const, 0},
    		{"Decl", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/readme-templates/multi-common-body.adoc.template

    While there is no more fine grained configuration in this example, library or application project specific build configuration can go into one of these convention plugin scripts.
    
    Lets have a look at the `build.gradle(.kts)` files in the subprojects.
    
    ====
    include::sample[dir="kotlin",files="app/build.gradle.kts[]"]
    include::sample[dir="groovy",files="app/build.gradle[]"]
    ====
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 08 11:21:22 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  3. src/internal/bisect/bisect.go

    func (m *Matcher) FileLine(w Writer, file string, line int) bool {
    	if m == nil {
    		return true
    	}
    	return m.fileLine(w, file, line)
    }
    
    // fileLine does the real work for FileLine.
    // This lets FileLine's body handle m == nil and potentially be inlined.
    func (m *Matcher) fileLine(w Writer, file string, line int) bool {
    	h := Hash(file, line)
    	if m.ShouldPrint(h) {
    		if m.MarkerOnly() {
    			PrintMarker(w, h)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/macho_combine_dwarf.go

    		return err
    	}
    	return binary.Write(r.f, r.order, data)
    }
    
    // machoCombineDwarf merges dwarf info generated by dsymutil into a macho executable.
    //
    // With internal linking, DWARF is embedded into the executable, this lets us do the
    // same for external linking.
    // exef is the file of the executable with no DWARF. It must have enough room in the macho
    // header to add the DWARF sections. (Use ld's -headerpad option)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/syscall/syscall_darwin.go

    	n := uintptr(CTL_MAXNAME) * siz
    
    	p := (*byte)(unsafe.Pointer(&buf[0]))
    	bytes, err := ByteSliceFromString(name)
    	if err != nil {
    		return nil, err
    	}
    
    	// Magic sysctl: "setting" 0.3 to a string name
    	// lets you read back the array of integers form.
    	if err = sysctl([]_C_int{0, 3}, p, &n, &bytes[0], uintptr(len(name))); err != nil {
    		return nil, err
    	}
    	return buf[0 : n/siz], nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    			// Warning: Do not call UnlockOSThread! Notably, netns.Do does call this.
    			runtime.LockOSThread()
    			if err := setupSandbox(); err != nil {
    				return err
    			}
    			// Mark we have actually run the command. This lets us distinguish from a failure in setupSandbox() vs f()
    			executed = true
    			return f()
    		}()
    	}()
    	err := <-chErr
    	if err != nil && !executed {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/regexp/onepass.go

    				instAlt = p.Inst[*p_A_Alt]
    				if !(instAlt.Op == syntax.InstAlt || instAlt.Op == syntax.InstAltMatch) {
    					continue
    				}
    			}
    			instOther := p.Inst[*p_A_Other]
    			// Analyzing both legs pointing to Alts is for another day
    			if instOther.Op == syntax.InstAlt || instOther.Op == syntax.InstAltMatch {
    				// too complicated
    				continue
    			}
    			// simple empty transition loop
    			// A:BC + B:DA => A:BC + B:DC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java

            ArtifactResolutionResult result = resolve(request);
    
            // We have collected all the problems so let's mimic the way the old code worked and just blow up right here.
            // That's right lets just let it rip right here and send a big incomprehensible blob of text at unsuspecting
            // users. Bad dog!
    
            resolutionErrorHandler.throwErrors(request, result);
    
            return result;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/buildid.go

    // that consume a particular package or binary. The content hash of every
    // input file for a given action must be included in the action ID hash.
    // Storing the content ID in the build ID lets us read it from the file with
    // minimal I/O, instead of reading and hashing the entire file.
    // This is especially effective since packages and binaries are typically
    // the largest inputs to an action.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/stackalloc.go

    		//}
    
    	}
    
    	// For each type, we keep track of all the stack slots we
    	// have allocated for that type. This map is keyed by
    	// strings returned by types.LinkString. This guarantees
    	// type equality, but also lets us match the same type represented
    	// by two different types.Type structures. See issue 65783.
    	locations := map[string][]LocalSlot{}
    
    	// Each time we assign a stack slot to a value v, we remember
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top