Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for IM (0.02 sec)

  1. pkg/kubelet/images/image_gc_manager.go

    	for image := range im.imageRecords {
    		if !currentImages.Has(image) {
    			klog.V(5).InfoS("Image ID is no longer present; removing from imageRecords", "imageID", image)
    			delete(im.imageRecords, image)
    		}
    	}
    
    	return imagesInUse, nil
    }
    
    func (im *realImageGCManager) GarbageCollect(ctx context.Context, beganGC time.Time) error {
    	ctx, otelSpan := im.tracer.Start(ctx, "Images/GarbageCollect")
    	defer otelSpan.End()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. pkg/kubelet/images/image_gc_manager_test.go

    	}, fakeRuntime
    }
    
    // Accessors used for thread-safe testing.
    func (im *realImageGCManager) imageRecordsLen() int {
    	im.imageRecordsLock.Lock()
    	defer im.imageRecordsLock.Unlock()
    	return len(im.imageRecords)
    }
    func (im *realImageGCManager) getImageRecord(name string) (*imageRecord, bool) {
    	im.imageRecordsLock.Lock()
    	defer im.imageRecordsLock.Unlock()
    	v, ok := im.imageRecords[name]
    	vCopy := *v
    	return &vCopy, ok
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 15:38:20 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. src/strconv/atoc.go

    	default:
    		return 0, syntaxError(fnParseComplex, orig)
    	}
    
    	// Read imaginary part.
    	im, n, err := parseFloatPrefix(s, size)
    	if err != nil {
    		err, pending = convErr(err, orig)
    		if err != nil {
    			return 0, err
    		}
    	}
    	s = s[n:]
    	if s != "i" {
    		return 0, syntaxError(fnParseComplex, orig)
    	}
    	return complex(re, im), pending
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_waypoint.go

    	// Ensure VIP cluster has services metadata for stats filter usage
    	im := getOrCreateIstioMetadata(localCluster.cluster)
    	im.Fields["services"] = &structpb.Value{
    		Kind: &structpb.Value_ListValue{
    			ListValue: &structpb.ListValue{
    				Values: []*structpb.Value{},
    			},
    		},
    	}
    	svcMetaList := im.Fields["services"].GetListValue()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. src/net/http/fs.go

    )
    
    func checkIfMatch(w ResponseWriter, r *Request) condResult {
    	im := r.Header.Get("If-Match")
    	if im == "" {
    		return condNone
    	}
    	for {
    		im = textproto.TrimString(im)
    		if len(im) == 0 {
    			break
    		}
    		if im[0] == ',' {
    			im = im[1:]
    			continue
    		}
    		if im[0] == '*' {
    			return condTrue
    		}
    		etag, remain := scanETag(im)
    		if etag == "" {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Client-TLSv12-P256-ECDHE

    000001e0  0e 04 12 04 10 9f 91 16  1f 43 43 3e 49 a6 de 6d  |.........CC>I..m|
    000001f0  b6 80 d7 9f 60 30 1b 06  03 55 1d 23 04 14 30 12  |....`0...U.#..0.|
    00000200  80 10 48 13 49 4d 13 7e  16 31 bb a3 01 d5 ac ab  |..H.IM.~.1......|
    00000210  6e 7b 30 19 06 03 55 1d  11 04 12 30 10 82 0e 65  |n{0...U....0...e|
    00000220  78 61 6d 70 6c 65 2e 67  6f 6c 61 6e 67 30 0d 06  |xample.golang0..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_builder.go

    		return
    	}
    
    	im := getOrCreateIstioMetadata(cluster)
    
    	// Add services field into istio metadata
    	im.Fields["services"] = &structpb.Value{
    		Kind: &structpb.Value_ListValue{
    			ListValue: &structpb.ListValue{
    				Values: []*structpb.Value{},
    			},
    		},
    	}
    
    	svcMetaList := im.Fields["services"].GetListValue()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  8. src/syscall/exec_linux.go

    	for {
    		RawSyscall(SYS_EXIT, 253, 0, 0)
    	}
    }
    
    func formatIDMappings(idMap []SysProcIDMap) []byte {
    	var data []byte
    	for _, im := range idMap {
    		data = append(data, itoa.Itoa(im.ContainerID)+" "+itoa.Itoa(im.HostID)+" "+itoa.Itoa(im.Size)+"\n"...)
    	}
    	return data
    }
    
    // writeIDMappings writes the user namespace User ID or Group ID mappings to the specified path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/model/generator.go

    		default:
    			matchSub = matcher.StringMatcherExact(sub, false)
    			matchIss = matcher.StringMatcherExact(iss, false)
    		}
    		im := MetadataStringMatcherForJWTClaim("iss", matchIss)
    		sm := MetadataStringMatcherForJWTClaim("sub", matchSub)
    		or = append(or, principalAnd([]*rbacpb.Principal{principalMetadata(im), principalMetadata(sm)}))
    	}
    	if len(or) == 1 {
    		return or[0], nil
    	} else if len(or) > 0 {
    		return principalOr(or), nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. docs/pl/docs/help-fastapi.md

    ### Proponuj rozwiązania
    
    * Po zrozumieniu pytania możesz podać im możliwą **odpowiedź**.
    
    * W wielu przypadkach lepiej zrozumieć ich **podstawowy problem lub przypadek użycia**, ponieważ może istnieć lepszy sposób rozwiązania niż to, co próbują zrobić.
    
    ### Poproś o zamknięcie
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top