Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 140 for Implementation (0.15 sec)

  1. src/runtime/mgc.go

    )
    
    // heapObjectsCanMove always returns false in the current garbage collector.
    // It exists for go4.org/unsafe/assume-no-moving-gc, which is an
    // unfortunate idea that had an even more unfortunate implementation.
    // Every time a new Go release happened, the package stopped building,
    // and the authors had to add a new file with a new //go:build line, and
    // then the entire ecosystem of packages with that as a dependency had to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_s390x.s

    #define X1    V1
    #define Y0    V2
    #define Y1    V3
    #define T0    V4
    #define T1    V5
    
    #define PL    V30
    #define PH    V31
    /*
     * https://delta.cs.cinvestav.mx/~francisco/arith/julio.pdf "Software Implementation of the NIST Elliptic Curves Over Prime Fields"
     *
     * A = X₁×Z₂²
     * B = Y₁×Z₂³
     * C = X₂×Z₁²-A
     * D = Y₂×Z₁³-B
     * X₃ = D² - 2A×C² - C³
     * Y₃ = D×(A×C² - X₃) - B×C³
     * Z₃ = Z₁×Z₂×C
     *
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    import (
    	"fmt"
    	"reflect"
    	"sort"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"k8s.io/apimachinery/pkg/util/json"
    	"k8s.io/apimachinery/pkg/util/mergepatch"
    )
    
    // An alternate implementation of JSON Merge Patch
    // (https://tools.ietf.org/html/rfc7386) which supports the ability to annotate
    // certain fields with metadata that indicates whether the elements of JSON
    // lists should be merged or replaced.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  4. src/go/printer/nodes.go

    		return lit
    	}
    	s, err := strconv.Unquote(lit.Value)
    	if err != nil {
    		return lit
    	}
    
    	// if the string is an invalid path, return whatever we have
    	//
    	// spec: "Implementation restriction: A compiler may restrict
    	// ImportPaths to non-empty strings using only characters belonging
    	// to Unicode's L, M, N, P, and S general categories (the Graphic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. src/runtime/mgcpacer.go

    	c.globalsScan.Add(amount)
    }
    
    // heapGoal returns the current heap goal.
    func (c *gcControllerState) heapGoal() uint64 {
    	goal, _ := c.heapGoalInternal()
    	return goal
    }
    
    // heapGoalInternal is the implementation of heapGoal which returns additional
    // information that is necessary for computing the trigger.
    //
    // The returned minTrigger is always <= goal.
    func (c *gcControllerState) heapGoalInternal() (goal, minTrigger uint64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                *resource_var_operation_node_id);
          }
        }
    
        // Merges `other` into this cluster, and clears `other`.  This method is
        // closely tied with the implementation of `MarkForCompilationPassImpl`.
        void Merge(Cluster* other);
    
        // If this is a trivial cluster containing only one node then return the ID
        // of that node.  May not be called otherwise.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. src/go/build/build.go

    	// whether dir exists.
    	// If so, HasSubdir sets rel to a slash-separated path that
    	// can be joined to root to produce a path equivalent to dir.
    	// If HasSubdir is nil, Import uses an implementation built on
    	// filepath.EvalSymlinks.
    	HasSubdir func(root, dir string) (rel string, ok bool)
    
    	// ReadDir returns a slice of fs.FileInfo, sorted by Name,
    	// describing the content of the named directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. src/runtime/map.go

    // Copyright 2014 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
    
    // This file contains the implementation of Go's map type.
    //
    // A map is just a hash table. The data is arranged
    // into an array of buckets. Each bucket contains up to
    // 8 key/elem pairs. The low-order bits of the hash are
    // used to select a bucket. Each bucket contains a few
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_test.go

    	if e.NumField() != 14 {
    		t.Fatalf("Expected 14 fields, got %v. This means we need to update filterChainMatchEqual implementation", e.NumField())
    	}
    }
    
    func TestInboundListener_PrivilegedPorts(t *testing.T) {
    	// Verify that an explicit ingress listener will not bind to privileged ports
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	// Check for memory leaks
    	assertPendingResync(0)
    	addEndpoint("svc", []string{"172.0.1.1", "172.0.1.2", "172.0.1.3"}, []string{"pod1", "pod2", "pod3"})
    	// This is really an implementation detail here - but checking to sanity check our test
    	assertPendingResync(1)
    	// Remove the endpoint again, with no pod events in between. Should have no memory leaks
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top