Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 590 for cheese (0.13 sec)

  1. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/UserQuestions.java

         */
        @Nullable
        Boolean askYesNoQuestion(String question);
    
        /**
         * Asks the user a question that has a boolean result and returns the answer.
         *
         * <p>The client UI is free to choose a convenient representation for boolean values, for example
         * allowing the user to type 'y' or 'n' or presenting a checkbox. The user is not required to answer 'true' or 'false'
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/api/resource/generated.proto

    //
    // 	(International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)
    //
    // <decimalSI>       ::= m | "" | k | M | G | T | P | E
    //
    // 	(Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)
    //
    // <decimalExponent> ::= "e" <signedNumber> | "E" <signedNumber>
    // ```
    //
    // No matter which of the three exponent forms is used, no quantity may represent
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/runtime/mem_windows.go

    	// This will fail if any of [v, v+n) is already reserved.
    	v = unsafe.Pointer(stdcall4(_VirtualAlloc, uintptr(v), n, _MEM_RESERVE, _PAGE_READWRITE))
    	if v != nil {
    		return v
    	}
    
    	// Next let the kernel choose the address.
    	return unsafe.Pointer(stdcall4(_VirtualAlloc, 0, n, _MEM_RESERVE, _PAGE_READWRITE))
    }
    
    func sysMapOS(v unsafe.Pointer, n uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. pkg/registry/core/service/portallocator/operation.go

    func (op *PortAllocationOperation) AllocateNext() (int, error) {
    	if op.dryRun {
    		// Find the max element of the allocated ports array.
    		// If no ports are already being allocated by this operation,
    		// then choose a sensible guess for a dummy port number
    		var lastPort int
    		for _, allocatedPort := range op.allocated {
    			if allocatedPort > lastPort {
    				lastPort = allocatedPort
    			}
    		}
    		if len(op.allocated) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  5. docs/ko/docs/help-fastapi.md

      "Releases only" 대신 "Watching"을 선택하면 다른 사용자가 새로운 issue를 생성할 때 알림이 수신됩니다.
    
      그런 다음 이런 issues를 해결 할 수 있도록 도움을 줄 수 있습니다.
    
      ## 이슈 생성하기
    
      GitHub 저장소에 [새로운 이슈 생성](https://github.com/tiangolo/fastapi/issues/new/choose) 을 할 수 있습니다, 예를들면 다음과 같습니다:
    
      - **질문**을 하거나 **문제**에 대해 질문합니다.
      - 새로운 **기능**을 제안 합니다.
    
      **참고**: 만약 이슈를 생성한다면, 저는 여러분에게 다른 사람들을 도와달라고 부탁할 것입니다. 😉
    
      ## Pull Request를 만드십시오
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 22:36:57 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libexport/load.h

      // GraphDef nodes are stored as a repeating list of nodes.  At module load
      // time, a module may have constants that need to be restored.  To restore
      // these constants, they are looked up in the GraphDef's nodes by their name.
      // Since we may need to load many constants, we create a hash map of these
      // names to their corresponding nodes at load time in order to look them up
      // in constant time.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 06:33:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeBuilder.java

            }
            throw new IllegalStateException("End of document found before returning to 0 depth");
        }
    
        /**
         * Input location builder interface, to be implemented to choose how to store data.
         *
         * @since 3.2.0
         */
        public interface InputLocationBuilder {
            Object toInputLocation(XmlPullParser parser);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryApiDependenciesIntegrationTest.groovy

            installation("build/install/main/release").exec().out == "Hello from the release library"
        }
    
        @ToBeFixedForConfigurationCache
        def "can choose alternative library implementation of api"() {
            given:
            def app = new CppHelloWorldApp()
            app.executable.writeSources(file("src/main"))
            app.library.writeSources(file("src/hello"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/language/nativeplatform/internal/IncludeType.java

         */
        IDENTIFIER,
        /**
         * A macro function argument list. These appear in the body of a directive or as the arguments to a {@link #MACRO_FUNCTION} eg {@code #include ABC(a b c)}.
         */
        ARGS_LIST,
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/codehost/svn.go

    	// “All files in the zip file are expected to be
    	// nested in a single top-level directory, whose name is not specified.”
    	// We'll (arbitrarily) choose the base of the remote path.
    	basePath := path.Join(path.Base(remote), subdir)
    
    	zw := zip.NewWriter(dst)
    	for _, e := range list.Entries {
    		if e.Kind != "file" {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top