Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,638 for cons (0.04 sec)

  1. src/net/dnsconfig_unix.go

    		conf.err = err
    		return conf
    	}
    	defer file.close()
    	if fi, err := file.file.Stat(); err == nil {
    		conf.mtime = fi.ModTime()
    	} else {
    		conf.servers = defaultNS
    		conf.search = dnsDefaultSearch()
    		conf.err = err
    		return conf
    	}
    	for line, ok := file.readLine(); ok; line, ok = file.readLine() {
    		if len(line) > 0 && (line[0] == ';' || line[0] == '#') {
    			// comment.
    			continue
    		}
    		f := getFields(line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:14:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsFeatureInteractionIntegrationTest.groovy

                    configurations.create('conf')
                    artifacts { add('conf', file('foo.jar')) }
                    dependencies {
                        conf('org:bar') {
                            version { strictly '2.0' }
                        }
                    }
                }
                dependencies {
                    constraints {
                        conf('org:bar') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. src/math/cmplx/conj.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cmplx
    
    // Conj returns the complex conjugate of x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 292 bytes
    - Viewed (0)
  4. test/const.go

    package main
    
    import "os"
    
    const (
    	c0      = 0
    	cm1     = -1
    	chuge   = 1 << 100
    	chuge_1 = chuge - 1
    	c1      = chuge >> 100
    	c3div2  = 3 / 2
    	c1e3    = 1e3
    
    	rsh1 = 1e100 >> 1000
    	rsh2 = 1e302 >> 1000
    
    	ctrue  = true
    	cfalse = !ctrue
    
    	// Issue #34563
    	_ = string(int(123))
    	_ = string(rune(456))
    )
    
    const (
    	f0              = 0.0
    	fm1             = -1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 26 23:54:29 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/signing/gnupg-signatory/tests/gpg.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/shared/conf/application.conf

    Louis Jacomet <******@****.***> 1711728981 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 88 bytes
    - Viewed (0)
  7. internal/event/target/testdata/contrib/nats_tls.conf

    Harshavardhana <******@****.***> 1622584780 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 163 bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/cors.md

    ## More info
    
    For more info about <abbr title="Cross-Origin Resource Sharing">CORS</abbr>, check the <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS" class="external-link" target="_blank">Mozilla CORS documentation</a>.
    
    !!! note "Technical Details"
        You could also use `from starlette.middleware.cors import CORSMiddleware`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Nov 13 20:28:37 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  9. docs/zh/docs/tutorial/cors.md

    ### 简单请求
    
    任何带有 `Origin` 请求头的请求。在这种情况下,中间件将像平常一样传递请求,但是在响应中包含适当的 CORS headers。
    
    ## 更多信息
    
    更多关于 <abbr title="Cross-Origin Resource Sharing">CORS</abbr> 的信息,请查看 <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS" class="external-link" target="_blank">Mozilla CORS 文档</a>。
    
    !!! note "技术细节"
        你也可以使用 `from starlette.middleware.cors import CORSMiddleware`。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 27 17:28:07 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/DependencyResolveRulesIntegrationTest.groovy

                            }
                        }
                    }
                }
                dependencies {
                    conf 'org:foo:1.0'
                    conf 'org:bar:1.0'
                    conf 'org:baz:1.0'
                }
            """
            resolve.prepare("conf")
    
            expect:
            succeeds("checkDeps")
            resolve.expectGraph {
                root(":", ":test:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 28.2K bytes
    - Viewed (0)
Back to top