Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 174 for Atack (0.04 sec)

  1. cmd/kube-proxy/app/server_linux.go

    				localDetectors,
    				s.Hostname,
    				s.NodeIPs,
    				s.Recorder,
    				s.HealthzServer,
    				config.NodePortAddresses,
    				initOnly,
    			)
    		} else {
    			// Create a single-stack proxier if and only if the node does not support dual-stack (i.e, no iptables support).
    			_, iptInterface := getIPTables(s.PrimaryIPFamily)
    
    			// TODO this has side effects that should only happen when Run() is invoked.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    			expectedAddr:    "::1",
    			expectedPort:    7073,
    		}, // dual-stack use cases
    		{
    			name:            "dual-stack host: defaultEndpoint set to 127.0.0.1:7073",
    			proxy:           &dsProxy,
    			defaultEndpoint: "127.0.0.1:7073",
    			expectedAddr:    "127.0.0.1",
    			expectedPort:    7073,
    		},
    		{
    			name:            "dual-stack host: defaultEndpoint set to [::1]:7073",
    			proxy:           &dsProxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. cmd/sftp-server_test.go

    // Copyright (c) 2015-2024 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. src/runtime/coro.go

    // and then blocks the current goroutine on c.
    func coroswitch(c *coro) {
    	gp := getg()
    	gp.coroarg = c
    	mcall(coroswitch_m)
    }
    
    // coroswitch_m is the implementation of coroswitch
    // that runs on the m stack.
    //
    // Note: Coroutine switches are expected to happen at
    // an order of magnitude (or more) higher frequency
    // than regular goroutine switches, so this path is heavily
    // optimized to remove unnecessary work.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. internal/http/listener_test.go

    // Copyright (c) 2015-2021 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/liveness/plive.go

    				}
    				lv.unsafePoints.Set(int32(v.ID))
    			}
    		}
    	}
    }
    
    // Returns true for instructions that must have a stack map.
    //
    // This does not necessarily mean the instruction is a safe-point. In
    // particular, call Values can have a stack map in case the callee
    // grows the stack, but not themselves be a safe-point.
    func (lv *liveness) hasStackMap(v *ssa.Value) bool {
    	if !v.Op.IsCall() {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. pkg/log/options.go

    				s, levelListString))
    
    		stringVar(&o.stackTraceLevels, "log_stacktrace_level", o.stackTraceLevels,
    			fmt.Sprintf("Comma-separated minimum per-scope logging level at which stack traces are captured, in the form of "+
    				"<scope>:<level>,<scope:level>,... where scope can be one of [%s] and level can be one of %s",
    				s, levelListString))
    
    		stringVar(&o.logCallers, "log_caller", o.logCallers,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	BuildID() string
    
    	// SourceLine reports the source line information for a given
    	// address in the file. Due to inlining, the source line information
    	// is in general a list of positions representing a call stack,
    	// with the leaf function first.
    	SourceLine(addr uint64) ([]Frame, error)
    
    	// Symbols returns a list of symbols in the object file.
    	// If r is not nil, Symbols restricts the list to symbols
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. cmd/erasure-server-pool-decom.go

    // Copyright (c) 2015-2023 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/check.go

    	methods  map[*TypeName][]*Func    // maps package scope type names to associated non-blank (non-interface) methods
    	untyped  map[syntax.Expr]exprInfo // map of expressions without final type
    	delayed  []action                 // stack of delayed action segments; segments are processed in FIFO order
    	objPath  []Object                 // path of object dependencies during type inference (for cycle reporting)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top