Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 278 for fulu (0.16 sec)

  1. ci/official/utilities/code_check_full.bats

    add them to //tensorflow/tools/pip_package/BUILD. Otherwise, add the no_pip tag
    to the test, or change code_check_full.bats in the SIG Build repository. That's
    https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/tf_sig_build_dockerfiles/devel.usertools/code_check_full.bats
    Here are the affected tests:
    EOF
        while read dep; do
          echo "For dependency $dep:"
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Mar 06 21:54:13 GMT 2024
    - 13.2K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/devel.usertools/code_check_full.bats

    add them to //tensorflow/tools/pip_package/BUILD. Otherwise, add the no_pip tag
    to the test, or change code_check_full.bats in the SIG Build repository. That's
    https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/tf_sig_build_dockerfiles/devel.usertools/code_check_full.bats
    Here are the affected tests:
    EOF
        while read dep; do
          echo "For dependency $dep:"
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 12.7K bytes
    - Viewed (0)
  3. .github/workflows/build.yml

            with:
              distribution: 'zulu'
              java-version: 8.0.242
    
          - name: Configure JDK
            uses: actions/setup-java@v4
            with:
              distribution: 'zulu'
              java-version: 11
    
          - name: Configure JDK
            uses: actions/setup-java@v4
            with:
              distribution: 'zulu'
              java-version: 17
    
          - name: Setup Gradle
    Others
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Apr 15 01:51:50 GMT 2024
    - 17.2K bytes
    - Viewed (0)
  4. build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy

    r\\distributions-full\\caches\\modules-2\\files-2.1\\org.jetbrains.kotlin\\kotlin-daemon-embeddable\\1.9.10\\bda2f7daa6b89d2ded2d9e1e0b0cadaf9446ade1\\kotlin-daemon-embeddable-1.9.10.jar;C:\\tcagent1\\work\\f63322e10dd6b396\\intTestHomeDir\\distributions-full\\caches\\modules-2\\files-2.1\\org.jetbrains.intellij.deps\\trove4j\\1.0.20200330\\3afb14d5f9ceb459d724e907a21145e8ff394f02\\trove4j-1.0.20200330.jar;C:\\tcagent1\\work\\f63322e10dd6b396\\intTestHomeDir\\distributions-full\\caches\\modules-...
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Sep 28 07:00:39 GMT 2023
    - 14.4K bytes
    - Viewed (0)
  5. docs/ru/docs/project-generation.md

    ## Full Stack FastAPI PostgreSQL
    
    GitHub: <a href="https://github.com/tiangolo/full-stack-fastapi-postgresql" class="external-link" target="_blank">https://github.com/tiangolo/full-stack-fastapi-postgresql</a>
    
    ### Full Stack FastAPI PostgreSQL - Особенности
    
    * Полностью интегрирован с **Docker** (основан на Docker).
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 13 18:00:47 GMT 2023
    - 10.5K bytes
    - Viewed (0)
  6. ci/devinfra/docker_windows/Dockerfile

    RUN Add-Type -AssemblyName "System.IO.Compression.FileSystem"; \
        $zulu_url = \"https://cdn.azul.com/zulu/bin/zulu17.32.13-ca-jdk17.0.2-win_x64.zip\"; \
        $zulu_zip = \"c:/temp/jdk_install.zip\"; \
        $zulu_extracted_path = \"c:/temp/\" + [IO.Path]::GetFileNameWithoutExtension($zulu_url); \
        $zulu_root = \"c:/openjdk\"; \
        (New-Object Net.WebClient).DownloadFile($zulu_url, $zulu_zip); \
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Aug 18 17:24:20 GMT 2023
    - 13.6K bytes
    - Viewed (0)
  7. src/bufio/bufio.go

    func (b *Reader) ReadBytes(delim byte) ([]byte, error) {
    	full, frag, n, err := b.collectFragments(delim)
    	// Allocate new buffer to hold the full pieces and the fragment.
    	buf := make([]byte, n)
    	n = 0
    	// Copy full pieces and fragment in.
    	for i := range full {
    		n += copy(buf[n:], full[i])
    	}
    	copy(buf[n:], frag)
    	return buf, err
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Oct 12 14:39:08 GMT 2023
    - 21.8K bytes
    - Viewed (0)
  8. docs/ru/docs/tutorial/extra-models.md

        email="******@****.***",
        full_name=None,
    )
    ```
    
    Или, если для большей точности мы напрямую используем `user_dict` с любым потенциальным содержимым, то этот пример будет выглядеть так:
    
    ```Python
    UserInDB(
        username = user_dict["username"],
        password = user_dict["password"],
        email = user_dict["email"],
        full_name = user_dict["full_name"],
    )
    ```
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  9. istioctl/pkg/proxyconfig/proxyconfig.go

    		Example: `  # Retrieve summary about all configuration for a given pod from Envoy.
      istioctl proxy-config all <pod-name[.namespace]>
    
      # Retrieve full cluster dump as JSON
      istioctl proxy-config all <pod-name[.namespace]> -o json
    
      # Retrieve full cluster dump with short syntax
      istioctl pc a <pod-name[.namespace]>
    
      # Retrieve cluster summary without using Kubernetes API
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 16 03:28:36 GMT 2024
    - 48K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java

        }
    
        /**
         * デフォルロケールで{@link DateFormat#FULL}スタイルのパターン文字列を返します。
         *
         * @return {@link DateFormat#FULL}スタイルのパターン文字列
         */
        public static String getFullPattern() {
            return getFullPattern(LocaleUtil.getDefault());
        }
    
        /**
         * 指定されたロケールで{@link DateFormat#FULL}スタイルのパターン文字列を返します。
         *
         * @param locale
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 22.1K bytes
    - Viewed (0)
Back to top