Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 436 for GO (0.09 sec)

  1. src/runtime/mgc.go

    	c := make(chan int, 2)
    	go bgsweep(c)
    	go bgscavenge(c)
    	<-c
    	<-c
    	memstats.enablegc = true // now that runtime is initialized, GC is okay
    }
    
    // Garbage collector phase.
    // Indicates to write barrier and synchronization task to perform.
    var gcphase uint32
    
    // The compiler knows about this variable.
    // If you change it, you must change builtin/runtime.go, too.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    			ServedVersions: a.group.AllServedVersionsByResource[path],
    		}
    	}
    
    	// Create Routes for the actions.
    	// TODO: Add status documentation using Returns()
    	// Errors (see api/errors/errors.go as well as go-restful router):
    	// http.StatusNotFound, http.StatusMethodNotAllowed,
    	// http.StatusUnsupportedMediaType, http.StatusNotAcceptable,
    	// http.StatusBadRequest, http.StatusUnauthorized, http.StatusForbidden,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. src/go/printer/testdata/parser.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.
    
    // Package parser implements a parser for Go source files. Input may be
    // provided in a variety of forms (see the various Parse* functions); the
    // output is an abstract syntax tree (AST) representing the Go source. The
    // parser is invoked through one of the Parse* functions.
    
    package parser
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  4. src/net/dnsclient_unix_test.go

    	c := &dnsConfig{search: []string{"go.dev.", "onion."}}
    	got := c.nameList("www")
    	if !slices.Equal(got, []string{"www.", "www.go.dev."}) {
    		t.Fatalf(`nameList("www") = %v, want "www.", "www.go.dev."`, got)
    	}
    
    	got = c.nameList("www.onion")
    	if !slices.Equal(got, []string{"www.onion.go.dev."}) {
    		t.Fatalf(`nameList("www.onion") = %v, want "www.onion.go.dev."`, got)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    	"strings"
    
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	route "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	rbachttp "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/rbac/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_server_test.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.
    
    package tls
    
    import (
    	"bytes"
    	"context"
    	"crypto"
    	"crypto/ecdh"
    	"crypto/elliptic"
    	"crypto/rand"
    	"crypto/x509"
    	"encoding/pem"
    	"errors"
    	"fmt"
    	"io"
    	"net"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"testing"
    	"time"
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. src/go/parser/parser.go

    	"go/ast"
    	"go/build/constraint"
    	"go/internal/typeparams"
    	"go/scanner"
    	"go/token"
    	"strings"
    )
    
    // The parser structure holds the parser's internal state.
    type parser struct {
    	file    *token.File
    	errors  scanner.ErrorList
    	scanner scanner.Scanner
    
    	// Tracing/debugging
    	mode   Mode // parsing mode
    	trace  bool // == (mode&Trace != 0)
    	indent int  // indentation used for tracing output
    
    	// Comments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

    // Copyright 2012 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.
    
    // This file implements typechecking of expressions.
    
    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    	"fmt"
    	"go/constant"
    	"go/token"
    	. "internal/types/errors"
    	"strings"
    )
    
    /*
    Basic algorithm:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    // stack, presumably a Go stack.
    //
    // Unlike runtime.Callers, the PC values returned should, when passed
    // to the symbolizer function, return the file/line of the call
    // instruction.  No additional subtraction is required or appropriate.
    //
    // On all platforms, the traceback function is invoked when a call from
    // Go to C to Go requests a stack trace. On linux/amd64, linux/ppc64le,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller.go

    	appsinformers "k8s.io/client-go/informers/apps/v1"
    	coreinformers "k8s.io/client-go/informers/core/v1"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/kubernetes/scheme"
    	unversionedapps "k8s.io/client-go/kubernetes/typed/apps/v1"
    	v1core "k8s.io/client-go/kubernetes/typed/core/v1"
    	appslisters "k8s.io/client-go/listers/apps/v1"
    	corelisters "k8s.io/client-go/listers/core/v1"
    	"k8s.io/client-go/tools/cache"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top