Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,303 for starts (0.2 sec)

  1. doc/next/6-stdlib/99-minor/reflect/61308.md

    The [SliceAt(typ Type, p unsafe.Pointer, len int)] function
    returns a Value representing a slice whose underlying array starts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 170 bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/classificationDeploymentMap.dfprop

    #
    # Specification:
    # map: {
    #     [table-name or $$ALL$$] = map:{
    #         ; [column-name (with hint)]=[classification-name]
    #     }
    # }
    #
    # *The line that starts with '#' means comment-out.
    #
    map:{
        #; $$ALL$$       = map:{suffix:_FLG=Flg}
    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 795 bytes
    - Viewed (0)
  3. src/cmd/go/internal/base/signal.go

    func processSignals() {
    	sig := make(chan os.Signal, 1)
    	signal.Notify(sig, signalsToIgnore...)
    	go func() {
    		<-sig
    		close(Interrupted)
    	}()
    }
    
    var onceProcessSignals sync.Once
    
    // StartSigHandlers starts the signal handlers.
    func StartSigHandlers() {
    	onceProcessSignals.Do(processSignals)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 02 16:43:58 UTC 2020
    - 663 bytes
    - Viewed (0)
  4. android/guava-tests/benchmark/com/google/common/collect/MapsMemoryBenchmark.java

      MapsImplEnum mapsImpl;
    
      /**
       * A map of contents pre-created before experiment starts to only measure map creation cost. The
       * implementation for the creation of contents is independent and could be different from that of
       * the map under test.
       */
      Map<Element, Element> contents;
    
      /** Map pre-created before experiment starts to only measure iteration cost during experiment. */
      Map<Element, Element> map;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 20 15:07:46 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  5. src/internal/zstd/bits.go

    	data  block   // the bits to read
    	off   uint32  // current offset into data
    	start uint32  // start in data; we read backward to start
    	bits  uint32  // bits ready to be returned
    	cnt   uint32  // number of valid bits in bits field
    }
    
    // makeReverseBitReader makes a reverseBitReader reading backward
    // from off to start. The bitstream starts with a 1 bit in the last
    // byte, at off.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. dbflute_fess/dfprop/sequenceMap.dfprop

    # 
    # Example:
    # map:{
    #     ; PURCHASE     = SEQ_PURCHASE
    #     ; MEMBER       = SEQ_MEMBER
    #     ; MEMBER_LOGIN = SEQ_MEMBER_LOGIN
    #     ; PRODUCT      = SEQ_PRODUCT
    # }
    #
    # *The line that starts with '#' means comment-out.
    #
    map:{
        #; PURCHASE     = SEQ_PURCHASE
        #; MEMBER       = SEQ_MEMBER
        #; MEMBER_LOGIN = SEQ_MEMBER_LOGIN
        #; PRODUCT      = SEQ_PRODUCT
    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 717 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/server.go

    	"k8s.io/apimachinery/pkg/runtime/schema"
    	genericapiserver "k8s.io/apiserver/pkg/server"
    	storagevalue "k8s.io/apiserver/pkg/storage/value"
    	"k8s.io/client-go/dynamic"
    	"k8s.io/client-go/rest"
    )
    
    // StartDefaultServer starts a test server.
    func StartDefaultServer(t servertesting.Logger, flags ...string) (func(), *rest.Config, *serveroptions.CustomResourceDefinitionsServerOptions, error) {
    	tearDownFn, s, err := startDefaultServer(t, flags...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/StandardOutputCapture.java

    package org.gradle.internal.logging;
    
    public interface StandardOutputCapture {
        /**
         * Starts redirection of System.out and System.err to the Gradle logging system.
         *
         * @return this
         */
        StandardOutputCapture start();
    
        /**
         * Restores System.out and System.err to the values they had before {@link #start()} has been called.
         *
         * @return this
         */
        StandardOutputCapture stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DetachedConfigurationsIntegrationTest.groovy

            succeeds "help"
    
            then:
            verifyAll(receivedProblem(0)) {
                fqid == 'deprecation:creating-a-configuration-with-a-name-that-starts-with-detachedconfiguration'
                contextualLabel == 'Creating a configuration with a name that starts with \'detachedConfiguration\' has been deprecated.'
                solutions == ["Use a different name for the configuration '$name'.".toString()]
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. src/go/internal/gcimporter/gcimporter.go

    	case "$$B\n":
    		var exportFormat byte
    		if exportFormat, err = buf.ReadByte(); err != nil {
    			return
    		}
    		size--
    
    		// The unified export format starts with a 'u'; the indexed export
    		// format starts with an 'i'; and the older binary export format
    		// starts with a 'c', 'd', or 'v' (from "version"). Select
    		// appropriate importer.
    		switch exportFormat {
    		case 'u':
    			var data []byte
    			var r io.Reader = buf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top