Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 247 for lifo (0.04 sec)

  1. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationListenerManager.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Manages listeners of build operations.
     *
     * There is one global listener for the life of the build runtime.
     * Listeners must be sure to remove themselves if they want to only listen for a single build.
     *
     * Listeners are notified in registration order.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/internal/src/pos_test.go

    			t.Errorf("%s > %s: got %v; want %v", test.p, test.q, got, test.after)
    		}
    	}
    }
    
    func TestLico(t *testing.T) {
    	for _, test := range []struct {
    		x         lico
    		string    string
    		line, col uint
    	}{
    		{0, ":0", 0, 0},
    		{makeLico(0, 0), ":0", 0, 0},
    		{makeLico(0, 1), ":0:1", 0, 1},
    		{makeLico(1, 0), ":1", 1, 0},
    		{makeLico(1, 1), ":1:1", 1, 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 14 23:50:26 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskProvider.java

         * @since 4.8
         */
        @Override
        void configure(Action<? super T> action);
    
        /**
         * The task name referenced by this provider.
         * <p>
         * Must be constant for the life of the object.
         *
         * @return The task name. Never null.
         * @since 4.9
         */
        @Override
        String getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/lif/sys.go

    // Copyright 2017 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.
    
    //go:build solaris
    
    package lif
    
    import "unsafe"
    
    var nativeEndian binaryByteOrder
    
    func init() {
    	i := uint32(1)
    	b := (*[4]byte)(unsafe.Pointer(&i))
    	if b[0] == 1 {
    		nativeEndian = littleEndian
    	} else {
    		nativeEndian = bigEndian
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 399 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/lift_quantizable_spots_as_functions_drq_min_elements.mlir

    // RUN: tf-quant-opt %s -split-input-file -quant-lift-quantizable-spots-as-functions-drq="min-num-elements-for-weights=2500000" | FileCheck %s
    
    // CHECK-LABEL: lift_float_matmul
    func.func @lift_float_matmul(%arg0: tensor<1x12x12x512xf32>) -> (tensor<*xf32>, tensor<*xf32>) {
      %cst = "tf.Const"() {value = dense<0.000000e+00> : tensor<512x512xf32>} : () -> tensor<512x512xf32>
      %out_1 = "tf.MatMul"(%arg0, %cst) {
        device = "", transpose_a = false, transpose_b = false
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/NamedDomainObjectProvider.java

         * @since 4.10
         */
        void configure(Action<? super T> action);
    
        /**
         * The domain object name referenced by this provider.
         * <p>
         * Must be constant for the life of the object.
         *
         * @return The domain object. Never null.
         * @since 4.10
         */
        String getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 04 05:48:20 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/lif/syscall.go

    // Copyright 2016 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.
    
    //go:build solaris
    
    package lif
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    //go:cgo_import_dynamic libc_ioctl ioctl "libc.so"
    
    //go:linkname procIoctl libc_ioctl
    
    var procIoctl uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 642 bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/lifecycle/MavenExecutionPlanTest.java

            MavenExecutionPlan plan = LifecycleExecutionPlanCalculatorStub.getProjectAExecutionPlan();
    
            assertNull(plan.findLastInPhase("pacXkage"));
            // Beer comes straight after package in stub, much like real life.
            assertNotNull(plan.findLastInPhase(LifecycleExecutionPlanCalculatorStub.INITIALIZE.getPhase()));
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/TestProperties.java

        static final String TEST_MUTATIONS = "test.mutations";
    
        static final String EXCLUDE_TEST_MUTATIONS = "test.mutations.exclude";
    
        static final Object TEST_FIFO_PIPE = "test.pipe.fifo";
        static final Object TEST_TRANSACT_PIPE = "test.pipe.transact";
        static final Object TEST_CALL_PIPE = "test.pipe.call";
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Feb 29 16:38:58 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/lif/zsys_solaris_amd64.go

    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs defs_solaris.go
    
    package lif
    
    type sockaddrStorage struct {
    	Family     uint16
    	X_ss_pad1  [6]int8
    	X_ss_align float64
    	X_ss_pad2  [240]int8
    }
    
    const (
    	sysLIFC_NOXMIT          = 0x1
    	sysLIFC_EXTERNAL_SOURCE = 0x2
    	sysLIFC_TEMPORARY       = 0x4
    	sysLIFC_ALLZONES        = 0x8
    	sysLIFC_UNDER_IPMP      = 0x10
    	sysLIFC_ENABLED         = 0x20
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 981 bytes
    - Viewed (0)
Back to top