Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 626 for plans (0.07 sec)

  1. src/internal/goos/zgoos_plan9.go

    // Code generated by gengoos.go using 'go generate'. DO NOT EDIT.
    
    //go:build plan9
    
    package goos
    
    const GOOS = `plan9`
    
    const IsAix = 0
    const IsAndroid = 0
    const IsDarwin = 0
    const IsDragonfly = 0
    const IsFreebsd = 0
    const IsHurd = 0
    const IsIllumos = 0
    const IsIos = 0
    const IsJs = 0
    const IsLinux = 0
    const IsNacl = 0
    const IsNetbsd = 0
    const IsOpenbsd = 0
    const IsPlan9 = 1
    const IsSolaris = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 453 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/plan9/str.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build plan9
    
    package plan9
    
    func itoa(val int) string { // do it here rather than with fmt to avoid dependency
    	if val < 0 {
    		return "-" + itoa(-val)
    	}
    	var buf [32]byte // big enough for int64
    	i := len(buf) - 1
    	for val >= 10 {
    		buf[i] = byte(val%10 + '0')
    		i--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 500 bytes
    - Viewed (0)
  3. src/runtime/testdata/testprognet/signal.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !windows && !plan9
    // +build !windows,!plan9
    
    // This is in testprognet instead of testprog because testprog
    // must not import anything (like net, but also like os/signal)
    // that kicks off background goroutines during init.
    
    package main
    
    import (
    	"os/signal"
    	"syscall"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 646 bytes
    - Viewed (0)
  4. docs_src/extra_models/tutorial003_py310.py

    
    class CarItem(BaseItem):
        type: str = "car"
    
    
    class PlaneItem(BaseItem):
        type: str = "plane"
        size: int
    
    
    items = {
        "item1": {"description": "All my friends drive a low rider", "type": "car"},
        "item2": {
            "description": "Music is my aeroplane, it's my aeroplane",
            "type": "plane",
            "size": 5,
        },
    }
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 644 bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/service/scopes/ToPlannedNodeConverterRegistryTest.groovy

     */
    
    package org.gradle.internal.service.scopes
    
    import org.gradle.execution.plan.Node
    import org.gradle.execution.plan.TaskDependencyResolver
    import org.gradle.execution.plan.TaskNode
    import org.gradle.execution.plan.ToPlannedNodeConverter
    import org.gradle.execution.plan.ToPlannedNodeConverterRegistry
    import org.gradle.execution.plan.ToPlannedTaskConverter
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 17 13:57:29 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. src/cmd/go/scriptconds_test.go

    		if s.Key == "-trimpath" && s.Value == "true" {
    			return true, nil
    		}
    	}
    	return false, nil
    }
    
    func hasWorkingGit() bool {
    	if runtime.GOOS == "plan9" {
    		// The Git command is usually not the real Git on Plan 9.
    		// See https://golang.org/issues/29640.
    		return false
    	}
    	_, err := exec.LookPath("git")
    	return err == nil
    }
    
    func cgoLinkExt(s *script.State) (bool, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. pkg/version/cobra.go

    		cmd.Flags().BoolVar(&remote, "remote", false, "Use --remote=false to suppress control plane check")
    	}
    
    	return cmd
    }
    
    func coalesceVersions(remoteVersion *MeshInfo) *MeshInfo {
    	if identicalVersions(*remoteVersion) {
    		return &MeshInfo{
    			ServerInfo{
    				Component: "control plane",
    				Info:      (*remoteVersion)[0].Info,
    			},
    		}
    	}
    
    	return remoteVersion
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/plan9/zsysnum_plan9.go

    // mksysnum_plan9.sh /opt/plan9/sys/src/libc/9syscall/sys.h
    // MACHINE GENERATED BY THE ABOVE COMMAND; DO NOT EDIT
    
    package plan9
    
    const (
    	SYS_SYSR1       = 0
    	SYS_BIND        = 2
    	SYS_CHDIR       = 3
    	SYS_CLOSE       = 4
    	SYS_DUP         = 5
    	SYS_ALARM       = 6
    	SYS_EXEC        = 7
    	SYS_EXITS       = 8
    	SYS_FAUTH       = 10
    	SYS_SEGBRK      = 12
    	SYS_OPEN        = 14
    	SYS_OSEEK       = 16
    	SYS_SLEEP       = 17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/apiclient/init_dryrun_test.go

    			expectedHandled:    true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 09 04:58:02 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  10. istioctl/pkg/authz/listener.go

    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	rbacpb "github.com/envoyproxy/go-control-plane/envoy/config/rbac/v3"
    	rbachttp "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/rbac/v3"
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    	rbactcp "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/rbac/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top