Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 98 for planes (0.2 sec)

  1. src/cmd/cgo/doc.go

    string values from Go to C and back to Go.
    
    Using //export in a file places a restriction on the preamble:
    since it is copied into two different C output files, it must not
    contain any definitions, only declarations. If a file contains both
    definitions and declarations, then the two output files will produce
    duplicate symbols and the linker will fail. To avoid this, definitions
    must be placed in preambles in other files, or in C source files.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	certsphase "k8s.io/kubernetes/cmd/kubeadm/app/phases/certs"
    	"k8s.io/kubernetes/cmd/kubeadm/app/phases/certs/renewal"
    	controlplanephase "k8s.io/kubernetes/cmd/kubeadm/app/phases/controlplane"
    	etcdphase "k8s.io/kubernetes/cmd/kubeadm/app/phases/etcd"
    	kubeconfigphase "k8s.io/kubernetes/cmd/kubeadm/app/phases/kubeconfig"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/apiclient"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  3. pilot/pkg/xds/delta.go

    // limitations under the License.
    
    package xds
    
    import (
    	"errors"
    	"fmt"
    	"strconv"
    	"strings"
    	"time"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"google.golang.org/grpc/codes"
    	"google.golang.org/grpc/peer"
    	"google.golang.org/grpc/status"
    
    	"istio.io/istio/pilot/pkg/features"
    	istiogrpc "istio.io/istio/pilot/pkg/grpc"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    			addressType:        gateway.HostnameAddressType,
    		},
    	}
    
    	if features.MultiNetworkGatewayAPI {
    		m[constants.UnmanagedGatewayController] = classInfo{
    			// This represents a gateway that our control plane cannot discover directly via the API server.
    			// We shouldn't generate Istio resources for it. We aren't programming this gateway.
    			controller:             constants.UnmanagedGatewayController,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. cmd/admin-bucket-handlers.go

    )
    
    const (
    	bucketQuotaConfigFile = "quota.json"
    	bucketTargetsFile     = "bucket-targets.json"
    )
    
    // PutBucketQuotaConfigHandler - PUT Bucket quota configuration.
    // ----------
    // Places a quota configuration on the specified bucket. The quota
    // specified in the quota configuration will be applied by default
    // to enforce total quota for the specified bucket.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  6. docs/en/docs/async.md

    > You have to clean a big, dirty house.
    
    *Yep, that's the whole story*.
    
    ---
    
    There's no waiting 🕙 anywhere, just a lot of work to be done, on multiple places of the house.
    
    You could have turns as in the burgers example, first the living room, then the kitchen, but as you are not waiting 🕙 for anything, just cleaning and cleaning, the turns wouldn't affect anything.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_node_status.go

    	// In large clusters, GET and PUT operations on Node objects coming
    	// from here are the majority of load on apiserver and etcd.
    	// To reduce the load on control-plane, we are serving GET operations from
    	// local lister (the data might be slightly delayed but it doesn't
    	// seem to cause more conflict - the delays are pretty small).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/CompactHashMap.java

     * which is optimal, and <i>not</i> the size of the internal hashtable, which could be much larger
     * than {@code size()}. Furthermore, this structure places significantly reduced load on the garbage
     * collector by only using a constant number of internal objects.
     *
     * <p>If there are no removals, then iteration order for the {@link #entrySet}, {@link #keySet}, and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  9. src/time/format_test.go

    	{"nanosecond:: comma separator", "Mon Jan _2 15:04:05,000000000 2006", "Thu Feb  4 21:00:57.012345678 2010", false, true, 1, 9},
    
    	// Leading zeros in other places should not be taken as fractional seconds.
    	{"zero1", "2006.01.02.15.04.05.0", "2010.02.04.21.00.57.0", false, false, 1, 1},
    	{"zero2", "2006.01.02.15.04.05.00", "2010.02.04.21.00.57.01", false, false, 1, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure.sh

          exit 2
          ;;
      esac
    }
    
    # Downloads kubernetes binaries and kube-system manifest tarball, unpacks them,
    # and places them into suitable directories. Files are placed in /home/kubernetes.
    function install-kube-binary-config {
      cd "${KUBE_HOME}"
      local server_binary_tar_urls
      while IFS= read -r url; do
        server_binary_tar_urls+=("$url")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
Back to top