Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 120 for INTERNAL (0.18 sec)

  1. src/cmd/compile/internal/ssa/rewriteWasm.go

    // Code generated from _gen/Wasm.rules using 'go generate'; DO NOT EDIT.
    
    package ssa
    
    import "internal/buildcfg"
    import "math"
    import "cmd/compile/internal/types"
    
    func rewriteValueWasm(v *Value) bool {
    	switch v.Op {
    	case OpAbs:
    		v.Op = OpWasmF64Abs
    		return true
    	case OpAdd16:
    		v.Op = OpWasmI64Add
    		return true
    	case OpAdd32:
    		v.Op = OpWasmI64Add
    		return true
    	case OpAdd32F:
    		v.Op = OpWasmF32Add
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LocalCache.java

            try {
              drainReferenceQueues();
            } finally {
              unlock();
            }
          }
        }
    
        /**
         * Drain the key and value reference queues, cleaning up internal entries containing garbage
         * collected keys or values.
         */
        @GuardedBy("this")
        void drainReferenceQueues() {
          if (map.usesKeyReferences()) {
            drainKeyReferenceQueue();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LocalCache.java

            try {
              drainReferenceQueues();
            } finally {
              unlock();
            }
          }
        }
    
        /**
         * Drain the key and value reference queues, cleaning up internal entries containing garbage
         * collected keys or values.
         */
        @GuardedBy("this")
        void drainReferenceQueues() {
          if (map.usesKeyReferences()) {
            drainKeyReferenceQueue();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  4. src/crypto/x509/verify_test.go

    package x509
    
    import (
    	"crypto"
    	"crypto/ecdsa"
    	"crypto/elliptic"
    	"crypto/rand"
    	"crypto/x509/pkix"
    	"encoding/asn1"
    	"encoding/pem"
    	"errors"
    	"fmt"
    	"internal/testenv"
    	"math/big"
    	"os/exec"
    	"reflect"
    	"runtime"
    	"slices"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    )
    
    type verifyTest struct {
    	name          string
    	leaf          string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/asmz.go

    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package s390x
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"fmt"
    	"log"
    	"math"
    	"sort"
    )
    
    // ctxtz holds state while assembling a single function.
    // Each function gets a fresh ctxtz.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    	"context"
    	"crypto/rand"
    	"crypto/tls"
    	"crypto/x509"
    	"encoding/binary"
    	"errors"
    	"fmt"
    	"go/token"
    	"internal/nettrace"
    	"io"
    	"log"
    	mrand "math/rand"
    	"net"
    	. "net/http"
    	"net/http/httptest"
    	"net/http/httptrace"
    	"net/http/httputil"
    	"net/http/internal/testcert"
    	"net/textproto"
    	"net/url"
    	"os"
    	"reflect"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

        Node* xla_computation_node;
        for (Node* n : graph_out->nodes()) {
          if (n->name() == func) {
            xla_computation_node = n;
          }
        }
        if (!xla_computation_node) {
          return errors::Internal("Cannot find node ", func);
        }
        NameAttrList func_name_attrs;
        func_name_attrs.set_name(func);
        clusters.emplace(func,
                         XlaClusterInfo{func, func_name_attrs, xla_computation_node,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.gradle.util.internal.VersionNumber
    
    import static org.gradle.testkit.runner.TaskOutcome.FROM_CACHE
    import static org.gradle.testkit.runner.TaskOutcome.NO_SOURCE
    import static org.gradle.testkit.runner.TaskOutcome.SKIPPED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework_test.go

    	"k8s.io/component-base/metrics/testutil"
    	"k8s.io/klog/v2/ktesting"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	internalqueue "k8s.io/kubernetes/pkg/scheduler/internal/queue"
    	"k8s.io/kubernetes/pkg/scheduler/metrics"
    	"k8s.io/utils/ptr"
    )
    
    const (
    	preEnqueuePlugin                  = "preEnqueue-plugin"
    	queueSortPlugin                   = "no-op-queue-sort-plugin"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/gateway_test.go

    			httpConnManager := buildGatewayConnectionManager(&meshconfig.ProxyConfig{}, proxy, false, push)
    			if !reflect.DeepEqual(tt.expectedconfig, httpConnManager.InternalAddressConfig) {
    				t.Errorf("unexpected internal address config, expected: %v, got :%v", tt.expectedconfig, httpConnManager.InternalAddressConfig)
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
Back to top