Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 65 for INTERNAL (0.14 sec)

  1. src/cmd/go/alldocs.go

    // However, it is still used to store downloaded source code (in GOPATH/pkg/mod)
    // and compiled commands (in GOPATH/bin).
    //
    // # Internal Directories
    //
    // Code in or below a directory named "internal" is importable only
    // by code in the directory tree rooted at the parent of "internal".
    // Here's an extended version of the directory layout above:
    //
    //	/home/user/go/
    //	    src/
    //	        crash/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    	"github.com/minio/minio-go/v7/pkg/replication"
    	"github.com/minio/minio-go/v7/pkg/set"
    	"github.com/minio/minio/internal/auth"
    	"github.com/minio/minio/internal/bucket/lifecycle"
    	sreplication "github.com/minio/minio/internal/bucket/replication"
    	"github.com/minio/minio/internal/logger"
    	xldap "github.com/minio/pkg/v3/ldap"
    	"github.com/minio/pkg/v3/policy"
    	"github.com/puzpuzpuz/xsync/v3"
    )
    
    const (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  3. src/net/http/server.go

    // license that can be found in the LICENSE file.
    
    // HTTP server. See RFC 7230 through 7235.
    
    package http
    
    import (
    	"bufio"
    	"bytes"
    	"context"
    	"crypto/tls"
    	"errors"
    	"fmt"
    	"internal/godebug"
    	"io"
    	"log"
    	"math/rand"
    	"net"
    	"net/textproto"
    	"net/url"
    	urlpkg "net/url"
    	"path"
    	"runtime"
    	"slices"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    			podResizeStatus = resizeStatus
    		}
    	}
    	return podResizeStatus
    }
    
    // generateAPIPodStatus creates the final API pod status for a pod, given the
    // internal pod status. This method should only be called from within sync*Pod methods.
    func (kl *Kubelet) generateAPIPodStatus(pod *v1.Pod, podStatus *kubecontainer.PodStatus, podIsTerminal bool) v1.PodStatus {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. src/debug/elf/elf.go

    	// bound to.
    	DF_1_NODIRECT DynFlag1 = 0x00020000
    	// Reserved for internal use by the kernel runtime-linker.
    	DF_1_IGNMULDEF DynFlag1 = 0x00040000
    	// Reserved for internal use by the kernel runtime-linker.
    	DF_1_NOKSYMS DynFlag1 = 0x00080000
    	// Reserved for internal use by the kernel runtime-linker.
    	DF_1_NOHDR DynFlag1 = 0x00100000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.cc

                          params->body_outputs, num_loop_vars, outputs));
            return absl::OkStatus();
          };
    
      // Create the while loop using an internal scope.
      tensorflow::Scope scope =
          NewInternalScope(&parent->graph, &status->status, &parent->refiner)
              .NewSubScope(params->name);
    
      const int first_new_node_id = parent->graph.num_node_ids();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier_test.go

    			if err != nil {
    				t.Errorf("failed to get %s value, err: %v", metrics.SyncProxyRulesNoLocalEndpointsTotal.Name, err)
    			}
    
    			if tc.expectedSyncProxyRulesNoLocalEndpointsTotalInternal != int(syncProxyRulesNoLocalEndpointsTotalInternal) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package sql
    
    import (
    	"context"
    	"database/sql/driver"
    	"errors"
    	"fmt"
    	"internal/race"
    	"internal/testenv"
    	"math/rand"
    	"reflect"
    	"runtime"
    	"slices"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    )
    
    func init() {
    	type dbConn struct {
    		db *DB
    		c  *driverConn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. pkg/scheduler/schedule_one_test.go

    	frameworkruntime "k8s.io/kubernetes/pkg/scheduler/framework/runtime"
    	internalcache "k8s.io/kubernetes/pkg/scheduler/internal/cache"
    	fakecache "k8s.io/kubernetes/pkg/scheduler/internal/cache/fake"
    	internalqueue "k8s.io/kubernetes/pkg/scheduler/internal/queue"
    	"k8s.io/kubernetes/pkg/scheduler/profile"
    	st "k8s.io/kubernetes/pkg/scheduler/testing"
    	tf "k8s.io/kubernetes/pkg/scheduler/testing/framework"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers.go

    	labelNodeRolePrefix = "node-role.kubernetes.io/"
    
    	// nodeLabelRole specifies the role of a node
    	nodeLabelRole = "kubernetes.io/role"
    )
    
    // AddHandlers adds print handlers for default Kubernetes types dealing with internal versions.
    func AddHandlers(h printers.PrintHandler) {
    	podColumnDefinitions := []metav1.TableColumnDefinition{
    		{Name: "Name", Type: "string", Format: "name", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]},
    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