Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of about 10,000 for internally (0.46 sec)

  1. src/go/types/methodset.go

    	}
    	return nil
    }
    
    // Shared empty method set.
    var emptyMethodSet MethodSet
    
    // Note: NewMethodSet is intended for external use only as it
    //       requires interfaces to be complete. It may be used
    //       internally if LookupFieldOrMethod completed the same
    //       interfaces beforehand.
    
    // NewMethodSet returns the method set for the given type T.
    // It always returns a non-nil method set, even if it is empty.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. src/container/list/list.go

    //	}
    package list
    
    // Element is an element of a linked list.
    type Element struct {
    	// Next and previous pointers in the doubly-linked list of elements.
    	// To simplify the implementation, internally a list l is implemented
    	// as a ring, such that &l.root is both the next element of the last
    	// list element (l.Back()) and the previous element of the first list
    	// element (l.Front()).
    	next, prev *Element
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

    //
    // This header file declares classes and functions used internally by
    // Google Test.  They are subject to change without notice.
    //
    // This file is #included in <gtest/internal/gtest-internal.h>.
    // Do not include this header file separately!
    
    #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_
    #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_
    
    #include "gtest/internal/gtest-string.h"
    
    namespace testing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. ci/official/README.md

    2. Running the CI scripts locally, as explained below
    3. **Google employees only**: Google employees can use an internal-only tool
    called "MLCI" that makes testing more convenient: it can execute any full CI job
    against a pending change. Search for "MLCI" internally to find it.
    
    You may invoke a CI script of your choice by following these instructions:
    
    ```bash
    cd tensorflow-git-dir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. src/internal/coverage/cfile/testsupport.go

    package cfile
    
    import (
    	"encoding/json"
    	"fmt"
    	"internal/coverage"
    	"internal/coverage/calloc"
    	"internal/coverage/cformat"
    	"internal/coverage/cmerge"
    	"internal/coverage/decodecounter"
    	"internal/coverage/decodemeta"
    	"internal/coverage/pods"
    	"internal/coverage/rtcov"
    	"internal/runtime/atomic"
    	"io"
    	"os"
    	"path/filepath"
    	"strings"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. src/runtime/netpoll_windows.go

    // Copyright 2013 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 runtime
    
    import (
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    const _DWORD_MAX = 0xffffffff
    
    const _INVALID_HANDLE_VALUE = ^uintptr(0)
    
    // Sources are used to identify the event that created an overlapped entry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

    //
    // This header file declares classes and functions used internally by
    // Google Test.  They are subject to change without notice.
    //
    // This file is #included in <gtest/internal/gtest-internal.h>.
    // Do not include this header file separately!
    
    #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_
    #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_
    
    #include "gtest/internal/gtest-string.h"
    
    namespace testing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. cmd/signature-v4-utils.go

    package cmd
    
    import (
    	"bytes"
    	"crypto/hmac"
    	"encoding/hex"
    	"io"
    	"net/http"
    	"strconv"
    	"strings"
    
    	"github.com/minio/minio/internal/auth"
    	"github.com/minio/minio/internal/hash/sha256"
    	xhttp "github.com/minio/minio/internal/http"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/policy"
    	"golang.org/x/exp/slices"
    )
    
    // http Header "x-amz-content-sha256" == "UNSIGNED-PAYLOAD" indicates that the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. pkg/config/constants/constants.go

    	// Label to skip config comparison.
    	AlwaysPushLabel = "internal.istio.io/always-push"
    
    	// InternalParentNames declares the original resources of an internally-generated config.
    	// This is used by k8s gateway-api.
    	// It is a comma separated list. For example, "HTTPRoute/foo.default,HTTPRoute/bar.default"
    	InternalParentNames      = "internal.istio.io/parents"
    	InternalRouteSemantics   = "internal.istio.io/route-semantics"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/fiat/generate.go

    import (
    	"crypto/subtle"
    	"errors"
    )
    
    // {{ .Element }} is an integer modulo {{ .Prime }}.
    //
    // The zero value is a valid zero element.
    type {{ .Element }} struct {
    	// Values are represented internally always in the Montgomery domain, and
    	// converted in Bytes and SetBytes.
    	x {{ .Prefix }}MontgomeryDomainFieldElement
    }
    
    const {{ .Prefix }}ElementLen = {{ .BytesLen }}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 9.1K bytes
    - Viewed (0)
Back to top