Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1831 - 1840 of 2,835 for 2$ (0.01 sec)

  1. cmd/endpoint-ellipses_test.go

    			nil,
    			nil,
    			8,
    			false,
    		},
    		{
    			[]string{"data{1...64}"},
    			nil,
    			nil,
    			64,
    			false,
    		},
    		{
    			[]string{"data{1...64}"},
    			nil,
    			nil,
    			2,
    			false,
    		},
    	}
    
    	for _, testCase := range testCases {
    		testCase := testCase
    		t.Run("", func(t *testing.T) {
    			argPatterns := make([]ellipses.ArgPattern, len(testCase.args))
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. api/go1.5.txt

    pkg go/types, const IsUnsigned BasicInfo
    pkg go/types, const IsUntyped = 64
    pkg go/types, const IsUntyped BasicInfo
    pkg go/types, const MethodExpr = 2
    pkg go/types, const MethodExpr SelectionKind
    pkg go/types, const MethodVal = 1
    pkg go/types, const MethodVal SelectionKind
    pkg go/types, const RecvOnly = 2
    pkg go/types, const RecvOnly ChanDir
    pkg go/types, const Rune = 5
    pkg go/types, const Rune BasicKind
    pkg go/types, const SendOnly = 1
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  3. docs/ko/docs/async.md

    연산이 결과를 전달하기 전에 대기를 해야하고 새로운 파이썬 기능들을 지원한다면, 이렇게 코드를 작성할 수 있습니다:
    
    ```Python
    burgers = await get_burgers(2)
    ```
    
    여기서 핵심은 `await`입니다. 이것은 파이썬에게 `burgers` 결과를 저장하기 이전에 `get_burgers(2)`의 작업이 완료되기를 🕙 기다리라고 ⏸ 말합니다. 이로 인해, 파이썬은 그동안 (다른 요청을 받는 것과 같은) 다른 작업을 수행해도 된다는 것을 🔀 ⏯ 알게될 것입니다.
    
    `await`가 동작하기 위해, 이것은 비동기를 지원하는 함수 내부에 있어야 합니다. 이를 위해서 함수를 `async def`를 사용해 정의하기만 하면 됩니다:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/lang/ClassIterator.java

     *     ...
     * }
     * </pre>
     * <p>
     * デフォルトでは{@link Object}クラスも反復の対象となります。 反復の対象に{@link Object}を含めたくない場合は、
     * {@link #iterable(Class, boolean)}または{@link #ClassIterator(Class, boolean)}
     * の第2引数に{@literal false}を指定します。
     * </p>
     *
     * @author koichik
     */
    public class ClassIterator implements Iterator<Class<?>> {
    
        /** クラス */
        protected Class<?> clazz;
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. internal/lock/lock_test.go

    	}()
    
    	rlk, err := RLockedOpenFile(f.Name())
    	if err != nil {
    		t.Fatal(err)
    	}
    	isClosed := rlk.IsClosed()
    	if isClosed {
    		t.Fatal("File ref count shouldn't be zero")
    	}
    
    	// Increase reference count to 2.
    	rlk.IncLockRef()
    
    	isClosed = rlk.IsClosed()
    	if isClosed {
    		t.Fatal("File ref count shouldn't be zero")
    	}
    
    	// Decrease reference count by 1.
    	if err = rlk.Close(); err != nil {
    		t.Fatal(err)
    	}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  6. cmd/admin-server-info.go

    		kms.EnvKMSSecretKey:         {},
    	}
    	for _, v := range os.Environ() {
    		if !strings.HasPrefix(v, "MINIO") && !strings.HasPrefix(v, "_MINIO") {
    			continue
    		}
    		split := strings.SplitN(v, "=", 2)
    		key := split[0]
    		value := ""
    		if len(split) > 1 {
    			value = split[1]
    		}
    
    		// Do not send sensitive creds.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (1)
  7. compat/maven-model-builder/src/test/java/org/apache/maven/model/inheritance/MergerTest.java

                                new InputSource(null, "merge-input"));
                propertiesLocation = mergeInput.getLocation("properties");
                assertNotNull(propertiesLocation);
                assertEquals(2, propertiesLocation.getLineNumber());
                assertEquals(3, propertiesLocation.getColumnNumber());
                filterPropLocation = propertiesLocation.getLocation("my.prop");
                assertNotNull(filterPropLocation);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/body-fields.md

    ```
    
    ////
    
    //// tab | Python 3.10+ nicht annotiert
    
    /// tip | "Tipp"
    
    Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
    ///
    
    ```Python hl_lines="2"
    {!> ../../docs_src/body_fields/tutorial001_py310.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+ nicht annotiert
    
    /// tip | "Tipp"
    
    Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. docs/distributed/distributed-from-config-file.sh

         - 'http://localhost:9004/tmp/xl/node9004/mnt/disk4/'
    EOF
    done
    
    minio server --config /tmp/minio.configfile.1 >/tmp/minio1_1.log 2>&1 &
    site1_pid=$!
    minio server --config /tmp/minio.configfile.2 >/tmp/minio2_1.log 2>&1 &
    site2_pid=$!
    minio server --config /tmp/minio.configfile.3 >/tmp/minio3_1.log 2>&1 &
    site3_pid=$!
    minio server --config /tmp/minio.configfile.4 >/tmp/minio4_1.log 2>&1 &
    site4_pid=$!
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Jun 28 09:06:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java

            map.put("boost1", 1);
            map.put("boost2", 0);
            assertTrue(10.0f == docBoostMatcher.getValue(map));
    
            map.put("boost1", 1);
            map.put("boost2", 2);
            assertTrue(12.0f == docBoostMatcher.getValue(map));
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top