Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for pieces (0.67 sec)

  1. pkg/log/options.go

    }
    
    func convertScopedLevel(sl string) (string, Level, error) {
    	var s string
    	var l string
    
    	pieces := strings.Split(sl, ":")
    	if len(pieces) == 1 {
    		s = DefaultScopeName
    		l = pieces[0]
    	} else if len(pieces) == 2 {
    		s = pieces[0]
    		l = pieces[1]
    	} else {
    		return "", NoneLevel, fmt.Errorf("invalid output level format '%s'", sl)
    	}
    
    	level, ok := stringToLevel[l]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/build.gradle.kts

        api(project(":tooling-api"))
    
        // This project contains the Gradle client, daemon and tooling API provider implementations.
        // It should be split up, but for now, add dependencies on both the client and daemon pieces
        api(project(":client-services"))
        api(project(":daemon-services"))
    
        api(libs.guava)
        api(libs.jsr305)
    
        implementation(project(":build-configuration"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    	present                bool
    	startBlock, startValue ID
    	// The location of each piece of the variable, in the same order as the
    	// SlotIDs in varParts.
    	pieces []VarLoc
    }
    
    func (e *pendingEntry) clear() {
    	e.present = false
    	e.startBlock = 0
    	e.startValue = 0
    	for i := range e.pieces {
    		e.pieces[i] = VarLoc{}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_utils_test.go

    	toRefs := func(strs []string) []metav1.OwnerReference {
    		refs := []metav1.OwnerReference{}
    		for _, s := range strs {
    			pieces := strings.Split(s, "/")
    			refs = append(refs, metav1.OwnerReference{
    				APIVersion: pieces[0],
    				Kind:       pieces[1],
    				Name:       pieces[2],
    			})
    		}
    		return refs
    	}
    	testCases := []struct {
    		orig, new []string
    		changed   bool
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  5. cmd/object-api-utils.go

    	}
    
    	// Split on dot and check each piece conforms to rules.
    	allNumbers := true
    	pieces := strings.Split(bucket, dnsDelimiter)
    	for _, piece := range pieces {
    		if len(piece) == 0 || piece[0] == '-' ||
    			piece[len(piece)-1] == '-' {
    			// Current piece has 0-length or starts or
    			// ends with a hyphen.
    			return false
    		}
    		// Now only need to check if each piece is a valid
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    }
    
    func makePortString(ports []api.ServicePort) string {
    	pieces := make([]string, len(ports))
    	for ix := range ports {
    		port := &ports[ix]
    		pieces[ix] = fmt.Sprintf("%d/%s", port.Port, port.Protocol)
    		if port.NodePort > 0 {
    			pieces[ix] = fmt.Sprintf("%d:%d/%s", port.Port, port.NodePort, port.Protocol)
    		}
    	}
    	return strings.Join(pieces, ",")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/liveness/plive.go

    //
    //	x = x[1:]
    //
    // it is important to generate code like:
    //
    //	base, len, cap = pieces of x[1:]
    //	OpVarDef x
    //	x = {base, len, cap}
    //
    // If instead the generated code looked like:
    //
    //	OpVarDef x
    //	base, len, cap = pieces of x[1:]
    //	x = {base, len, cap}
    //
    // then the liveness analysis would decide the previous value of x was
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/func.go

    	// Names is a copy of NamedValues.Keys. We keep a separate list
    	// of keys to make iteration order deterministic.
    	Names []*LocalSlot
    	// Canonicalize root/top-level local slots, and canonicalize their pieces.
    	// Because LocalSlot pieces refer to their parents with a pointer, this ensures that equivalent slots really are equal.
    	CanonicalLocalSlots  map[LocalSlot]*LocalSlot
    	CanonicalLocalSplits map[LocalSlotSplitKey]*LocalSlot
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/build.gradle

                sampleDirectory = samplesRoot.dir("build-organization/multi-project-with-convention-plugins")
                displayName = "Sharing build logic between subprojects"
                description = "Organize build logic into reusable pieces"
                category = "Build organization"
                common {
                    from(templates.precompiledScriptPluginUtilsInBuildSrc)
                }
            }
    
            publishingConventionPlugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  10. CREDITS

    have the freedom to distribute copies of free software (and charge for
    them if you wish), that you receive source code or can get it if you
    want it, that you can change the software or use pieces of it in new
    free programs, and that you know you can do these things.
    
      Developers that use our General Public Licenses protect your rights
    with two steps: (1) assert copyright on the software, and (2) offer
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
Back to top