Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for sf (0.02 sec)

  1. pkg/kubelet/cm/cpumanager/state/state_checkpoint_test.go

    					}
    				}
    			}
    		})
    	}
    }
    
    func AssertStateEqual(t *testing.T, sf State, sm State) {
    	cpusetSf := sf.GetDefaultCPUSet()
    	cpusetSm := sm.GetDefaultCPUSet()
    	if !cpusetSf.Equals(cpusetSm) {
    		t.Errorf("State CPUSet mismatch. Have %v, want %v", cpusetSf, cpusetSm)
    	}
    
    	cpuassignmentSf := sf.GetCPUAssignments()
    	cpuassignmentSm := sm.GetCPUAssignments()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  2. src/encoding/json/encode.go

    			}
    			visited[f.typ] = true
    
    			// Scan f.typ for fields to include.
    			for i := 0; i < f.typ.NumField(); i++ {
    				sf := f.typ.Field(i)
    				if sf.Anonymous {
    					t := sf.Type
    					if t.Kind() == reflect.Pointer {
    						t = t.Elem()
    					}
    					if !sf.IsExported() && t.Kind() != reflect.Struct {
    						// Ignore embedded fields of unexported non-struct types.
    						continue
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  3. src/runtime/tracestack.go

    			continue
    		}
    
    		u, uf := newInlineUnwinder(fi, callPC)
    		for ; uf.valid(); uf = u.next(uf) {
    			sf := u.srcFunc(uf)
    			if sf.funcID == abi.FuncIDWrapper && elideWrapperCalling(lastFuncID) {
    				// ignore wrappers
    			} else if more := skipOrAdd(uf.pc + 1); !more {
    				break outer
    			}
    			lastFuncID = sf.funcID
    		}
    	}
    	return n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/runtime/symtab.go

    					// Skip, because tracebackPCs (inside runtime.Callers) would too.
    					continue
    				}
    				ci.nextPC = unext.pc + 1
    				break
    			}
    		}
    		ci.frames = append(ci.frames, Frame{
    			PC:        pc,
    			Func:      f,
    			Function:  funcNameForPrint(sf.name()),
    			Entry:     entry,
    			startLine: int(sf.startLine),
    			funcInfo:  funcInfo,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. src/runtime/race.go

    func raceSymbolizeCode(ctx *symbolizeCodeContext) {
    	pc := ctx.pc
    	fi := findfunc(pc)
    	if fi.valid() {
    		u, uf := newInlineUnwinder(fi, pc)
    		for ; uf.valid(); uf = u.next(uf) {
    			sf := u.srcFunc(uf)
    			if sf.funcID == abi.FuncIDWrapper && u.isInlined(uf) {
    				// Ignore wrappers, unless we're at the outermost frame of u.
    				// A non-inlined wrapper frame always means we have a physical
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. src/net/http/httputil/reverseproxy.go

    func removeHopByHopHeaders(h http.Header) {
    	// RFC 7230, section 6.1: Remove headers listed in the "Connection" header.
    	for _, f := range h["Connection"] {
    		for _, sf := range strings.Split(f, ",") {
    			if sf = textproto.TrimString(sf); sf != "" {
    				h.Del(sf)
    			}
    		}
    	}
    	// RFC 2616, section 13.5.1: Remove a set of known hop-by-hop headers.
    	// This behavior is superseded by the RFC 7230 Connection header, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/SourceFoldersCreator.java

            Pair<Collection<SourceFolder>, Collection<SourceFolder>> partitionedFolders = CollectionUtils.partition(sourceFolder,  sf-> sf.getPath().contains(".."));
    
            Collection<SourceFolder> externalSourceFolders = partitionedFolders.getLeft();
            Collection<SourceFolder> regularSourceFolders = partitionedFolders.getRight();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Suppliers.java

       */
      public static <T extends @Nullable Object> Function<Supplier<T>, T> supplierFunction() {
        @SuppressWarnings("unchecked") // implementation is "fully variant"
        SupplierFunction<T> sf = (SupplierFunction<T>) SupplierFunctionImpl.INSTANCE;
        return sf;
      }
    
      private interface SupplierFunction<T extends @Nullable Object> extends Function<Supplier<T>, T> {}
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

          params.set(p[0], p[1]);
        }
    
        // Update params to include src.
        let v = pprofQuoteMeta(stacks.Sources[src].FullName);
        if (param != 'f' && param != 'sf') { // old f,sf values are overwritten
          // Add new source to current parameter value.
          const old = params.get(param);
          if (old && old != '') {
            v += '|' + old;
          }
        }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Suppliers.java

       */
      public static <T extends @Nullable Object> Function<Supplier<T>, T> supplierFunction() {
        @SuppressWarnings("unchecked") // implementation is "fully variant"
        SupplierFunction<T> sf = (SupplierFunction<T>) SupplierFunctionImpl.INSTANCE;
        return sf;
      }
    
      private interface SupplierFunction<T extends @Nullable Object> extends Function<Supplier<T>, T> {}
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top