Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 241 for ARE (0.03 sec)

  1. src/crypto/tls/common.go

    	// the keys were set with SessionTicketKey or SetSessionTicketKeys. The
    	// first key is used for new tickets and any subsequent keys can be used to
    	// decrypt old tickets. The slice contents are not protected by the mutex
    	// and are immutable.
    	sessionTicketKeys []ticketKey
    	// autoSessionTicketKeys is like sessionTicketKeys but is owned by the
    	// auto-rotation logic. See Config.ticketKeys.
    	autoSessionTicketKeys []ticketKey
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    	// Start in the caller's frame.
    	if GOARCH == "arm" && goarm < 7 && GOOS == "linux" && frame.pc&0xffff0000 == 0xffff0000 {
    		// Note that the calls are simple BL without pushing the return
    		// address, so we use LR directly.
    		//
    		// The kernel helpers are frameless leaf functions, so SP and
    		// LR are not touched.
    		frame.pc = frame.lr
    		frame.lr = 0
    	}
    
    	f := findfunc(frame.pc)
    	if !f.valid() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            configuration.setExtendsFrom([configuration3])
    
            then:
            configuration.extendsFrom == [configuration3] as Set
        }
    
        def "extended configurations are not duplicated"() {
            def configuration = conf()
            def configuration1 = conf("other")
    
            when:
            configuration.extendsFrom(configuration1, configuration1)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        # Consider if there is a way to check if activation fusion is properly
        # done in MLIR level.
        # Tests that the quantized graph outputs similar values. The rtol and atol
        # values are arbitrary.
        self.assertAllClose(new_outputs, expected_outputs, rtol=0.3, atol=0.2)
    
        # Due to other meta data, the compression is not exactly 1/4.
        self.assertLess(
            testing.get_size_ratio(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    // top of this file.
    type typePointers struct {
    	// elem is the address of the current array element of type typ being iterated over.
    	// Objects that are not arrays are treated as single-element arrays, in which case
    	// this value does not change.
    	elem uintptr
    
    	// addr is the address the iterator is currently working from and describes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    type scavChunkData struct {
    	// inUse indicates how many pages in this chunk are currently
    	// allocated.
    	//
    	// Only the first 10 bits are used.
    	inUse uint16
    
    	// lastInUse indicates how many pages in this chunk were allocated
    	// when we transitioned from gen-1 to gen.
    	//
    	// Only the first 10 bits are used.
    	lastInUse uint16
    
    	// gen is the generation counter from a scavengeIndex from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        return success();
      }
    };
    
    
    // The below pattern is equivalent to the DRR rule below
    // The checks are dependent on generated values, so we can't add
    // the checks on intermediate values, ideally we should find equivalent
    // checks that guarantees the resultant ops are valid.
    // The extra conditions are the broadcasting conditions.
    //
    // The pattern lower FusedBatchNormV3 to arithmetic ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    // Package files
    //
    // Parse methods are annotated with matching Go productions as appropriate.
    // The annotations are intended as guidelines only since a single Go grammar
    // rule may be covered by multiple parse methods and vice versa.
    //
    // Excluding methods returning slices, parse methods named xOrNil may return
    // nil; all others are expected to return a valid non-nil node.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    				evictionsTotal.WithLabelValues(zone).Inc()
    			}
    
    			return result, 0
    		})
    	}
    }
    
    // monitorNodeHealth verifies node health are constantly updated by kubelet, and if not, post "NodeReady==ConditionUnknown".
    // This function will
    //   - add nodes which are not ready or not reachable for a long period of time to a rate-limited
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		// problems for using the plugin in the Cluster Autoscaler. If
    		// this step here turns out to be expensive, we may have to
    		// maintain and update state more persistently.
    		//
    		// Claims are treated as "allocated" if they are in the assume cache
    		// or currently their allocation is in-flight.
    		resources, err := newResourceModel(logger, pl.resourceSliceLister, pl.claimAssumeCache, &pl.inFlightAllocations)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top