Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 250 for maxarg (0.14 sec)

  1. tests/testdata/config/rule-default-route-cors-policy.yaml

            allowMethods:
              - POST
              - GET
              - OPTIONS
            allowHeaders:
              - content-type
            exposeHeaders:
              - x-custom-header
            maxAge: 300s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 01 00:53:22 UTC 2020
    - 827 bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtTypeScope.kt

        /**
         * Return a sequence of [KaCallableSignature] which current scope contain if declaration, if declaration name present in [names]
         *
         * @see getCallableSignatures
         */
        public fun getCallableSignatures(vararg names: Name): Sequence<KaCallableSignature<*>> = withValidityAssertion {
            getCallableSignatures(names.toList())
        }
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/dist/util.go

    		}
    		*c = count(n)
    	}
    	return nil
    }
    
    func (c *count) IsBoolFlag() bool {
    	return true
    }
    
    func xflagparse(maxargs int) {
    	flag.Var((*count)(&vflag), "v", "verbosity")
    	flag.Parse()
    	if maxargs >= 0 && flag.NArg() > maxargs {
    		flag.Usage()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 17:50:29 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/UrlComponentEncodingTesterJvm.kt

       * strict than the others.
       */
      fun escapeForUri(vararg codePoints: Int) =
        apply {
          uriEscapedCodePoints.append(String(*codePoints))
        }
    
      /**
       * Configure code points to be stripped in conversion to `java.net.URI`. That class is more
       * strict than the others.
       */
      fun stripForUri(vararg codePoints: Int) =
        apply {
          uriStrippedCodePoints.append(String(*codePoints))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/zipUtils.kt

    import kotlin.reflect.KClass
    
    
    fun classEntriesFor(classes: Array<out KClass<*>>): Sequence<Pair<String, ByteArray>> =
        classes.asSequence().map { classEntryFor(it) }
    
    
    fun classEntriesFor(vararg classes: Class<*>): Sequence<Pair<String, ByteArray>> =
        classes.asSequence().map { classEntryFor(it) }
    
    
    fun classEntryFor(clazz: KClass<*>): Pair<String, ByteArray> =
        classEntryFor(clazz.java)
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 648 bytes
    - Viewed (0)
  6. src/runtime/sys_openbsd_arm64.s

    noerr:
    	RET
    
    TEXT runtime·fcntl_trampoline(SB),NOSPLIT,$0
    	MOVD	R0, R19
    	MOVW	0(R19), R0		// arg 1 - fd
    	MOVW	4(R19), R1		// arg 2 - cmd
    	MOVW	8(R19), R2		// arg 3 - arg
    	MOVD	$0, R3			// vararg
    	CALL	libc_fcntl(SB)
    	MOVD	$0, R1
    	CMP	$-1, R0
    	BNE	noerr
    	CALL	libc_errno(SB)
    	MOVW	(R0), R1
    	MOVW	$-1, R0
    noerr:
    	MOVW	R0, 12(R19)
    	MOVW	R1, 16(R19)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  7. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/fixtures/CompilationCache.kt

        action(CompilationCache(this))
    
    
    class CompilationCache(private val result: ExecutionResult) : KotlinDslCacheFixture {
    
        override fun misses(vararg cachedScripts: CachedScript) =
            cachedScripts.forEach { assertCompilations(it, 1) }
    
        override fun hits(vararg cachedScripts: CachedScript) =
            cachedScripts.forEach { assertCompilations(it, 0) }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/net/http/cookie_test.go

    		{Name: "quoted0", Value: "none", MaxAge: 30},
    		{Name: "quoted1", Value: "cookieValue", MaxAge: 31},
    		{Name: "quoted2", Value: "cookieAV"},
    		{Name: "quoted3", Value: "both"},
    	}
    	if len(got) != len(want) {
    		t.Fatalf("got %d cookies, want %d", len(got), len(want))
    	}
    	for i, w := range want {
    		g := got[i]
    		if g.Name != w.Name || g.Value != w.Value || g.MaxAge != w.MaxAge {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/TestWithTempFiles.kt

            tempFolder.testDirectory.createFile(fileName)
    
        protected
        fun newFile(fileName: String, text: String): File =
            newFile(fileName).apply { writeText(text) }
    
        protected
        fun newFolder(vararg folderNames: String): File =
            tempFolder.testDirectory.createDir(folderNames.joinToString(File.separator))
    
        protected
        fun withZip(fileName: String, entries: Sequence<Pair<String, ByteArray>>): File =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/runtime/netpoll.go

    	c.first = pd.link
    	unlock(&c.lock)
    	return pd
    }
    
    // makeArg converts pd to an interface{}.
    // makeArg does not do any allocation. Normally, such
    // a conversion requires an allocation because pointers to
    // types which embed runtime/internal/sys.NotInHeap (which pollDesc is)
    // must be stored in interfaces indirectly. See issue 42076.
    func (pd *pollDesc) makeArg() (i any) {
    	x := (*eface)(unsafe.Pointer(&i))
    	x._type = pdType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top