Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 94 for Grappler (0.34 sec)

  1. tools/istio-iptables/pkg/capture/run.go

    		"--to-ports", cfg.cfg.InboundCapturePort)
    
    	cfg.handleInboundPortsInclude()
    
    	// TODO: change the default behavior to not intercept any output - user may use http_proxy or another
    	// iptablesOrFail wrapper (like ufw). Current default is similar with 0.1
    	// Jump to the ISTIOOUTPUT chain from OUTPUT chain for all tcp traffic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  2. src/runtime/asm_loong64.s

    	DISPATCH(runtime·call536870912, 536870912)
    	DISPATCH(runtime·call1073741824, 1073741824)
    	MOVV	$runtime·badreflectcall(SB), R4
    	JMP	(R4)
    
    #define CALLFN(NAME,MAXSIZE)			\
    TEXT NAME(SB), WRAPPER, $MAXSIZE-48;		\
    	NO_LOCAL_POINTERS;			\
    	/* copy arguments to stack */		\
    	MOVV	arg+16(FP), R4;			\
    	MOVWU	argsize+24(FP), R5;			\
    	MOVV	R3, R12;				\
    	ADDV	$8, R12;			\
    	ADDV	R12, R5;				\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *       (In simple cases, callers can avoid this by registering all tasks with the same {@link
       *       MoreExecutors#newSequentialExecutor} wrapper around {@code directExecutor()}. More
       *       complex cases may require using thread pools or making deeper changes.)
       *   <li>If an exception propagates out of a {@code Runnable}, it is not necessarily seen by any
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *       (In simple cases, callers can avoid this by registering all tasks with the same {@link
       *       MoreExecutors#newSequentialExecutor} wrapper around {@code directExecutor()}. More
       *       complex cases may require using thread pools or making deeper changes.)
       *   <li>If an exception propagates out of a {@code Runnable}, it is not necessarily seen by any
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  5. src/cmd/cover/cover.go

    	counterLengths []int
    }
    
    // Function holds func-specific state.
    type Func struct {
    	units      []coverage.CoverableUnit
    	counterVar string
    }
    
    // File is a wrapper for the state of a file used in the parser.
    // The basic parse tree walker is a method of this type.
    type File struct {
    	fset    *token.FileSet
    	name    string // Name of file.
    	astFile *ast.File
    	blocks  []Block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. internal/config/config.go

    	if spc {
    		s.WriteString(KvDoubleQuote)
    	}
    	s.WriteString(kv.Value)
    	if spc {
    		s.WriteString(KvDoubleQuote)
    	}
    	return s.String()
    }
    
    // KVS - is a shorthand for some wrapper functions
    // to operate on list of key values.
    type KVS []KV
    
    // Empty - return if kv is empty
    func (kvs KVS) Empty() bool {
    	return len(kvs) == 0
    }
    
    // Clone - returns a copy of the KVS
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  7. src/encoding/json/encode.go

    			panic("ptrEncoder.encode should have emptied ptrSeen via defers")
    		}
    		e.ptrLevel = 0
    		return e
    	}
    	return &encodeState{ptrSeen: make(map[any]struct{})}
    }
    
    // jsonError is an error wrapper type for internal use only.
    // Panics with errors are wrapped in jsonError so that the top-level recover
    // can distinguish intentional panics from this package.
    type jsonError struct{ error }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  8. src/syscall/syscall_linux.go

    //
    // Note that this can't be a push linkname because the runtime already has a
    // nameless linkname to export to assembly here and in x/sys. Additionally,
    // entersyscall fetches the caller PC and SP and thus can't have a wrapper
    // inbetween.
    
    //go:linkname runtime_entersyscall runtime.entersyscall
    func runtime_entersyscall()
    
    //go:linkname runtime_exitsyscall runtime.exitsyscall
    func runtime_exitsyscall()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    // the SymbolInfo from the disasm package and the base that must be
    // added to correspond to sample addresses
    type objSymbol struct {
    	sym  *plugin.Sym
    	file plugin.ObjFile
    }
    
    // orderSyms is a wrapper type to sort []*objSymbol by a supplied comparator.
    type orderSyms struct {
    	v    []*objSymbol
    	less func(a, b *objSymbol) bool
    }
    
    func (o orderSyms) Len() int           { return len(o.v) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. cmd/erasure-multipart.go

    	result.IsTruncated = uploadIndex < len(uploads)
    
    	if !result.IsTruncated {
    		result.NextKeyMarker = ""
    		result.NextUploadIDMarker = ""
    	}
    
    	return result, nil
    }
    
    // newMultipartUpload - wrapper for initializing a new multipart
    // request; returns a unique upload id.
    //
    // Internally this function creates 'uploads.json' associated for the
    // incoming object at
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top