Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for internal2 (0.16 sec)

  1. src/log/internal/internal.go

    // Copyright 2023 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 internal contains definitions used by both log and log/slog.
    package internal
    
    // DefaultOutput holds a function which calls the default log.Logger's
    // output function.
    // It allows slog.defaultHandler to call into an unexported function of
    // the log package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 18:33:50 UTC 2023
    - 487 bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Internal.java

    import java.time.Duration;
    
    /** This class is for {@code com.google.common.base} use only! */
    @J2ktIncompatible
    @GwtIncompatible // java.time.Duration
    @ElementTypesAreNonnullByDefault
    final class Internal {
    
      /**
       * Returns the number of nanoseconds of the given duration without throwing or overflowing.
       *
       * <p>Instead of throwing {@link ArithmeticException}, this method silently saturates to either
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 11 14:30:06 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. src/cmd/gofmt/internal.go

    // Copyright 2015 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.
    
    // TODO(gri): This file and the file src/go/format/internal.go are
    // the same (but for this comment and the package name). Do not modify
    // one without the other. Determine if we can factor out functionality
    // in a public API. See also #11844 for context.
    
    package main
    
    import (
    	"bytes"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 14:23:08 UTC 2020
    - 5K bytes
    - Viewed (0)
  4. src/go/format/internal.go

    // Copyright 2015 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.
    
    // TODO(gri): This file and the file src/cmd/gofmt/internal.go are
    // the same (but for this comment and the package name). Do not modify
    // one without the other. Determine if we can factor out functionality
    // in a public API. See also #11844 for context.
    
    package format
    
    import (
    	"bytes"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 14:23:08 UTC 2020
    - 5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/internal/internal.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Code generated by applyconfiguration-gen. DO NOT EDIT.
    
    package internal
    
    import (
    	"fmt"
    	"sync"
    
    	typed "sigs.k8s.io/structured-merge-diff/v4/typed"
    )
    
    func Parser() *typed.Parser {
    	parserOnce.Do(func() {
    		var err error
    		parser, err = typed.NewParser(schemaYAML)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. pkg/kube/krt/internal.go

    	id             collectionUID
    	collectionName string
    	// Filter over the collection
    	filter *filter
    }
    
    type erasedEventHandler = func(o []Event[any], initialSync bool)
    
    // registerDependency is an internal interface for things that can register dependencies.
    // This is called from Fetch to Collections, generally.
    type registerDependency interface {
    	// Registers a dependency, returning true if it is finalized
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. istioctl/pkg/internaldebug/internal-debug.go

    `,
    		Example: `  # Retrieve sync status for all Envoys in a mesh
      istioctl x internal-debug syncz
    
      # Retrieve sync diff for a single Envoy and Istiod
      istioctl x internal-debug syncz istio-egressgateway-59585c5b9c-ndc59.istio-system
    
      # SECURITY OPTIONS
    
      # Retrieve syncz debug information directly from the control plane, using token security
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/liveness/intervals.go

    	return false
    }
    
    // Merge combines the intervals from "is" and "is2" and returns
    // a new Intervals object containing all combined ranges from the
    // two inputs.
    func (is Intervals) Merge(is2 Intervals) Intervals {
    	if len(is) == 0 {
    		return is2
    	} else if len(is2) == 0 {
    		return is
    	}
    	// walk the combined set of intervals and merge them together.
    	var ret Intervals
    	var pv pairVisitor
    	cur := pv.init(is, is2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    #include <ctype.h>
    #include <float.h>
    #include <string.h>
    #include <iomanip>
    #include <limits>
    #include <set>
    
    #include "gtest/gtest-message.h"
    #include "gtest/internal/gtest-string.h"
    #include "gtest/internal/gtest-filepath.h"
    #include "gtest/internal/gtest-type-util.h"
    
    // Due to C++ preprocessor weirdness, we need double indirection to
    // concatenate two tokens when one of them is __LINE__.  Writing
    //
    //   foo ## __LINE__
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    #include <ctype.h>
    #include <float.h>
    #include <string.h>
    #include <iomanip>
    #include <limits>
    #include <set>
    
    #include "gtest/gtest-message.h"
    #include "gtest/internal/gtest-string.h"
    #include "gtest/internal/gtest-filepath.h"
    #include "gtest/internal/gtest-type-util.h"
    
    // Due to C++ preprocessor weirdness, we need double indirection to
    // concatenate two tokens when one of them is __LINE__.  Writing
    //
    //   foo ## __LINE__
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
Back to top