Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 60 for importing (0.21 sec)

  1. src/crypto/tls/common.go

    // the seed. If the connection was set to allow renegotiation via
    // Config.Renegotiation, or if the connections supports neither TLS 1.3 nor
    // Extended Master Secret, this function will return an error.
    //
    // Exporting key material without Extended Master Secret or TLS 1.3 was disabled
    // in Go 1.22 due to security issues (see the Security Considerations sections
    // of RFC 5705 and RFC 7627), but can be re-enabled with the GODEBUG setting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    	// precomputing some number of those and cache for future reuse.
    	precomputedProbabilities []string
    
    	// The following buffers are used to reuse memory and avoid allocations
    	// that are significantly impacting performance.
    	iptablesData             *bytes.Buffer
    	existingFilterChainsData *bytes.Buffer
    	filterChains             proxyutil.LineBuffer
    	filterRules              proxyutil.LineBuffer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	//	is really slim.
    	//	2. When working with old version containers which have no restart count label,
    	//	we can only assume their restart count is 0.
    	// Anyhow, we only promised "best-effort" restart count reporting, we can just ignore
    	// these limitations now.
    	// TODO: move this comment to SyncPod.
    	podSandboxIDs, err := m.getSandboxIDByPodUID(ctx, uid, nil)
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. src/time/time.go

    // We initialize startNano to runtimeNano() - 1 so that on systems where
    // monotonic time resolution is fairly low (e.g. Windows 2008
    // which appears to have a default resolution of 15ms),
    // we avoid ever reporting a monotonic time of 0.
    // (Callers may want to use 0 as "time not set".)
    var startNano int64 = runtimeNano() - 1
    
    // x/tools uses a linkname of time.Now in its tests. No harm done.
    //go:linkname Now
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    			// root we will load all of its (unpruned) transitive dependencies into
    			// the module graph.
    			//
    			// (This is the “argument invariant”, and is important for
    			// reproducibility.)
    
    		default:
    			// pkg is a dependency of some other package outside of the main module.
    			// As far as we know it's not relevant to the main module (and thus not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbFile.java

     * <code>public</code> on the server <code>storage15</code>. In addition
     * to referencing files and directories, jCIFS can also address servers,
     * and workgroups.
     * <p>
     * <font color="#800000"><i>Important: all SMB URLs that represent
     * workgroups, servers, shares, or directories require a trailing slash '/'.
     * </i></font>
     * <p>
     * When using the <tt>java.net.URL</tt> class with
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  7. src/runtime/traceback.go

    	"internal/abi"
    	"internal/bytealg"
    	"internal/goarch"
    	"internal/stringslite"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // The code in this file implements stack trace walking for all architectures.
    // The most important fact about a given architecture is whether it uses a link register.
    // On systems with link registers, the prologue for a non-leaf function stores the
    // incoming value of LR at the bottom of the newly allocated stack frame.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - The nftables kube-proxy mode now has its own metrics rather than reporting
      metrics with "iptables" in their names. ([#124557](https://github.com/kubernetes/kubernetes/pull/124557), [@danwinship](https://github.com/danwinship)) [SIG Network and Windows]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. src/go/build/build.go

    	} else if escaped {
    		err = errors.New("unfinished escaping")
    	}
    	return args, err
    }
    
    // matchAuto interprets text as either a +build or //go:build expression (whichever works),
    // reporting whether the expression matches the build context.
    //
    // matchAuto is only used for testing of tag evaluation
    // and in #cgo lines, which accept either syntax.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    // findObject panics.
    //
    // refBase and refOff optionally give the base address of the object
    // in which the pointer p was found and the byte offset at which it
    // was found. These are used for error reporting.
    //
    // It is nosplit so it is safe for p to be a pointer to the current goroutine's stack.
    // Since p is a uintptr, it would not be adjusted if the stack were to move.
    //
    // findObject should be an internal detail,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top