Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 74 for OUT (0.05 sec)

  1. pkg/proxy/nftables/proxier_test.go

    var testNodeIPs = []string{testNodeIP, testNodeIPAlt, testExternalIP, testNodeIPv6, testNodeIPv6Alt}
    
    func NewFakeProxier(ipFamily v1.IPFamily) (*knftables.Fake, *Proxier) {
    	// TODO: Call NewProxier after refactoring out the goroutine
    	// invocation into a Run() method.
    	nftablesFamily := knftables.IPv4Family
    	podCIDR := "10.0.0.0/8"
    	serviceCIDRs := "172.30.0.0/16"
    	if ipFamily == v1.IPv6Protocol {
    		nftablesFamily = knftables.IPv6Family
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    		volumePluginMgr: volumePluginMgr,
    		recorder:        recorder,
    		blkUtil:         blkUtil,
    		translator:      csitrans.New(),
    	}
    }
    
    // OperationGenerator interface that extracts out the functions from operation_executor to make it dependency injectable
    type OperationGenerator interface {
    	// Generates the MountVolume function needed to perform the mount of a volume plugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func createPseudoConsole(size uint32, in Handle, out Handle, flags uint32, pconsole *Handle) (hr error) {
    	r0, _, _ := syscall.Syscall6(procCreatePseudoConsole.Addr(), 5, uintptr(size), uintptr(in), uintptr(out), uintptr(flags), uintptr(unsafe.Pointer(pconsole)), 0)
    	if r0 != 0 {
    		hr = syscall.Errno(r0)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        }
    
        // Calculate new bias.  Generate a new FC; it will be constant folded.
        auto old_bias = fc_op.getBias();
        if (!old_bias || mlir::isa<NoneType>(old_bias.getType())) {
          // TODO(b/180752069): Figure out new bias' type when old bias is empty.
          return failure();
        }
    
        // The FC relies on constant folding, which is implemented on F32. Checks
        // types to be F32.
        {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    						}
    				},
    				"exp": %d
    			}`, valid.Unix()),
    			want: &user.DefaultInfo{
    				Name: "jane",
    			},
    		},
    		{
    			// if the groups claim isn't provided, this shouldn't error out
    			name: "no-groups-claim",
    			options: Options{
    				JWTAuthenticator: apiserver.JWTAuthenticator{
    					Issuer: apiserver.Issuer{
    						URL:       "https://auth.example.com",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller_test.go

    			expectedSucceeded:       1,
    			expectedFailed:          1,
    			expectedCondition:       batch.JobFailed,
    			expectedConditionReason: batch.JobReasonDeadlineExceeded,
    		},
    		"activeDeadlineSeconds times-out before any pod starts": {
    			parallelism:             1,
    			completions:             1,
    			activeDeadlineSeconds:   10,
    			startTime:               10,
    			backoffLimit:            6,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

              <description>The name of the file that must exist to activate the profile.</description>
            </field>
          </fields>
        </class>
        <!--
        This can be put back in when we figure out how to have multiple model versions
        <class>
          <name>ActivationCustom</name>
          <version>4.1.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. src/debug/elf/elf.go

     * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     * SUCH DAMAGE.
     */
    
    package elf
    
    import "strconv"
    
    /*
     * Constants
     */
    
    // Indexes into the Header.Ident array.
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller_test.go

    			delay := manager.failedPodsBackoff.Get(backoffKey)
    			if delay != initialDelay {
    				t.Fatal("Backoff delay shouldn't be raised while waiting.")
    			}
    
    			resetCounters(manager)
    
    			// Sleep to wait out backoff
    			fakeClock := manager.failedPodsBackoff.Clock
    
    			// Move just before the backoff end time
    			fakeClock.Sleep(delay - 1*time.Nanosecond)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers.go

    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    	row.Cells = append(row.Cells, obj.Status, string(obj.Reason), obj.Message)
    
    	return []metav1.TableRow{row}, nil
    }
    
    // Lay out all the containers on one line if use wide output.
    func layoutContainerCells(containers []api.Container) (names string, images string) {
    	var namesBuffer bytes.Buffer
    	var imagesBuffer bytes.Buffer
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top