Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for tienes (0.1 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. pkg/volume/configmap/configmap.go

    			ObjectMeta: metav1.ObjectMeta{
    				Namespace: b.pod.Namespace,
    				Name:      b.source.Name,
    			},
    		}
    	}
    
    	totalBytes := totalBytes(configMap)
    	klog.V(3).Infof("Received configMap %v/%v containing (%v) pieces of data, %v total bytes",
    		b.pod.Namespace,
    		b.source.Name,
    		len(configMap.Data)+len(configMap.BinaryData),
    		totalBytes)
    
    	payload, err := MakePayload(b.source.Items, configMap, b.source.DefaultMode, optional)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. cmd/object-api-utils.go

    		return true
    	}
    	if len(bucket) < 3 || len(bucket) > 63 {
    		return false
    	}
    
    	// 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
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    // patcher breaks the process of patch application and retries into smaller
    // pieces of functionality.
    // TODO: Use builder pattern to construct this object?
    // TODO: As part of that effort, some aspects of PatchResource above could be
    // moved into this type.
    type patcher struct {
    	// Pieces of RequestScope
    	namer               ScopeNamer
    	creater             runtime.ObjectCreater
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. cmd/erasure-metadata.go

    		fi.Metadata = make(map[string]string)
    	}
    	fi.Metadata[ReservedMetadataPrefixLower+tierFVMarker] = ""
    }
    
    // SetSkipTierFreeVersion indicates to skip adding a tier free version id.
    // Note: Used only when expiring tiered objects and the remote content has
    // already been scheduled for deletion
    func (fi *FileInfo) SetSkipTierFreeVersion() {
    	if fi.Metadata == nil {
    		fi.Metadata = make(map[string]string)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. src/runtime/type.go

    // there is exactly one *_type per Go type, so that pointer equality
    // can be used to test if types are equal. There is one place that
    // breaks this assumption: buildmode=shared. In this case a type can
    // appear as two different pieces of memory. This is hidden from the
    // runtime and reflect package by the per-module typemap built in
    // typelinksinit. It uses typesEqual to map types from later modules
    // back into earlier ones.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. 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)
  8. src/testing/fstest/testfs.go

    	if err != nil {
    		t.errorf("%s: second Open+ReadDir(-1): %w", dir, err)
    		return
    	}
    	t.checkDirList(dir, "first Open+ReadDir(-1) vs second Open+ReadDir(-1)", list, list2)
    
    	// Reopen directory, read a third time in pieces, make sure contents match.
    	if d = t.openDir(dir); d == nil {
    		return
    	}
    	defer d.Close()
    	list2 = nil
    	for {
    		n := 1
    		if len(list2) > 0 {
    			n = 2
    		}
    		frag, err := d.ReadDir(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K 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. src/encoding/gob/type.go

    // to decode a wireType; it is exactly the wireType struct here, interpreted
    // using the gob rules for sending a structure, except that we assume the
    // ids for wireType and structType etc. are known. The relevant pieces
    // are built in encode.go's init() function.
    // To maintain binary compatibility, if you extend this type, always put
    // the new fields last.
    type wireType struct {
    	ArrayT           *arrayType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top