Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 274 for INTERNAL (0.4 sec)

  1. src/syscall/syscall_windows.go

    // license that can be found in the LICENSE file.
    
    // Windows system calls.
    
    package syscall
    
    import (
    	errorspkg "errors"
    	"internal/asan"
    	"internal/bytealg"
    	"internal/itoa"
    	"internal/msan"
    	"internal/oserror"
    	"internal/race"
    	"runtime"
    	"sync"
    	"unsafe"
    )
    
    type Handle uintptr
    
    const InvalidHandle = ^Handle(0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. src/testing/testing.go

    // testing needs, where ordinary test functions suffice.
    package testing
    
    import (
    	"bytes"
    	"errors"
    	"flag"
    	"fmt"
    	"internal/goexperiment"
    	"internal/race"
    	"io"
    	"math/rand"
    	"os"
    	"reflect"
    	"runtime"
    	"runtime/debug"
    	"runtime/trace"
    	"slices"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    // maxObletBytes. When scanning encounters the beginning of a large
    // object, it scans only the first oblet and enqueues the remaining
    // oblets as new scan jobs.
    
    package runtime
    
    import (
    	"internal/cpu"
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    const (
    	_DebugGC      = 0
    	_FinBlockSize = 4 * 1024
    
    	// concurrentSweep is a debug flag. Disabling this flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

    import org.apache.maven.api.services.xml.XmlReaderException;
    import org.apache.maven.api.services.xml.XmlReaderRequest;
    import org.apache.maven.internal.impl.resolver.DefaultModelCache;
    import org.apache.maven.internal.impl.resolver.DefaultModelRepositoryHolder;
    import org.apache.maven.internal.impl.resolver.DefaultModelResolver;
    import org.apache.maven.model.v4.MavenTransformer;
    import org.codehaus.plexus.interpolation.InterpolationException;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      auto enter_0 = ops::internal::Enter(root.WithOpName("enter_a"), a, "frame");
      auto exit_0 = ops::internal::Exit(root.WithOpName("exit_a"), enter_0);
      auto tanh = ops::Tanh(root.WithOpName("tanh"), exit_0);
      auto enter_1 =
          ops::internal::Enter(root.WithOpName("enter_1"), tanh, "frame");
      auto exit_1 = ops::internal::Exit(root.WithOpName("exit_1"), enter_1);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderProfileTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser
    
    import org.gradle.api.internal.artifacts.ImmutableModuleIdentifierFactory
    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.data.MavenDependencyKey
    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.data.PomProfile
    import org.gradle.internal.id.UUIDGenerator
    import spock.lang.Issue
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  7. pkg/kubelet/nodestatus/setters_test.go

    			},
    			shouldError: false,
    		},
    		{
    			name:   "An Internal/ExternalIP, an Internal/ExternalDNS",
    			nodeIP: netutils.ParseIPSloppy("10.1.1.1"),
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.1.1.1"},
    				{Type: v1.NodeExternalIP, Address: "55.55.55.55"},
    				{Type: v1.NodeInternalDNS, Address: "ip-10-1-1-1.us-west-2.compute.internal"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. src/cmd/cgo/out.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"bytes"
    	"cmd/internal/pkgpath"
    	"debug/elf"
    	"debug/macho"
    	"debug/pe"
    	"fmt"
    	"go/ast"
    	"go/printer"
    	"go/token"
    	"internal/xcoff"
    	"io"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    	"sort"
    	"strings"
    	"unicode"
    )
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_tls_test.go

    		},
    		{
    			"Auto fill nil settings when mTLS nil for internal service in plaintext mode",
    			nil,
    			[]string{"spiffe://foo/serviceaccount/1"},
    			"foo.com",
    			&model.Proxy{Metadata: &model.NodeMetadata{}},
    			true, false, model.MTLSDisable,
    			nil,
    			userSupplied,
    		},
    		{
    			"Auto fill nil settings when mTLS nil for internal service in unknown mode",
    			nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal.go

    var (
    	// errSpec is used to determine if the error comes from the spec of HPA object in reconcileAutoscaler.
    	// All such errors should have this error as a root error so that the upstream function can distinguish spec errors from internal errors.
    	// e.g., fmt.Errorf("invalid spec%w", errSpec)
    	errSpec error = errors.New("")
    )
    
    type timestampedRecommendation struct {
    	recommendation int32
    	timestamp      time.Time
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top