Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 677 for assignments (0.5 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Script.java

         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.</p>
         *
         * @param args map of property assignments to {@code ConfigurableFileTree} object
         * @return the configured file tree. Never returns null.
         */
        ConfigurableFileTree fileTree(Map<String, ?> args);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. src/internal/reflectlite/value.go

    	default:
    		// Value is direct, and so is the interface.
    		e.Data = v.ptr
    	}
    	// Now, fill in the type portion. We're very careful here not
    	// to have any operation between the e.word and e.typ assignments
    	// that would let the garbage collector observe the partially-built
    	// interface value.
    	e.Type = t
    	return i
    }
    
    // unpackEface converts the empty interface i to a Value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. test/escape2.go

    	b.buf1 = b.arrPtr[1:2:3] // ERROR "\(\*Buffer\).arrayPtr ignoring self-assignment in b.buf1 = b.arrPtr\[1:2:3\]$"
    }
    
    func (b *Buffer) baz() { // ERROR "b does not escape$"
    	b.str1 = b.str1[1:2] // ERROR "\(\*Buffer\).baz ignoring self-assignment in b.str1 = b.str1\[1:2\]$"
    	b.str1 = b.str2[1:2] // ERROR "\(\*Buffer\).baz ignoring self-assignment in b.str1 = b.str2\[1:2\]$"
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  4. src/net/lookup_test.go

    		sep = " "
    	}
    	fmt.Fprintf(&buf, "]")
    	return buf.String()
    }
    
    func TestLookupPort(t *testing.T) {
    	// See https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml
    	//
    	// Please be careful about adding new test cases.
    	// There are platforms which have incomplete mappings for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/a.out.go

    // Define the special register after REG_SPECIAL, the first value of it should be
    // REG_{name} = SYSREG_END + iota.
    const (
    	REG_SPECIAL = obj.RBaseARM64 + 1<<12
    )
    
    // Register assignments:
    //
    // compiler allocates R0 up as temps
    // compiler allocates register variables R7-R25
    // compiler allocates external registers R26 down
    //
    // compiler allocates register variables F7-F26
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  6. src/go/types/generate_test.go

    			}
    		} else {
    			t.Errorf("file on disk in %s is stale:\n%s", dstDir, d)
    		}
    	}
    }
    
    type action func(in *ast.File)
    
    var filemap = map[string]action{
    	"alias.go": fixTokenPos,
    	"assignments.go": func(f *ast.File) {
    		renameImportPath(f, `"cmd/compile/internal/syntax"->"go/ast"`)
    		renameSelectorExprs(f, "syntax.Name->ast.Ident", "ident.Value->ident.Name", "ast.Pos->token.Pos") // must happen before renaming identifiers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    == Build Scripting
    
    A build script is made up of zero or more statements and script blocks:
    
    [source]
    ----
    println(project.layout.projectDirectory);
    ----
    
    Statements can include method calls, property assignments, and local variable definitions:
    
    [source]
    ----
    version = '1.0.0.GA'
    ----
    
    A script block is a method call which takes a closure/lambda as a parameter:
    
    [source]
    ----
    configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. src/crypto/tls/cipher_suites.go

    		if cipherSuite.id == id {
    			return cipherSuite
    		}
    	}
    	return nil
    }
    
    // A list of cipher suite IDs that are, or have been, implemented by this
    // package.
    //
    // See https://www.iana.org/assignments/tls-parameters/tls-parameters.xml
    const (
    	// TLS 1.0 - 1.2 cipher suites.
    	TLS_RSA_WITH_RC4_128_SHA                      uint16 = 0x0005
    	TLS_RSA_WITH_3DES_EDE_CBC_SHA                 uint16 = 0x000a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. test/live.go

    	x = "hello"
    	return
    }
    
    // ignoring block returns used to cause "live at entry to f8: x, y".
    
    func f8() (x, y string) {
    	return g8()
    }
    
    func g8() (string, string)
    
    // ignoring block assignments used to cause "live at entry to f9: x"
    // issue 7205
    
    var i9 interface{}
    
    func f9() bool {
    	g8()
    	x := i9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/CipherSuite.kt

     *
     * See [NativeCrypto.java][conscrypt_providers] which lists the cipher suites supported by
     * Conscrypt.
     *
     * [iana_tls_parameters]: https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml
     * [sslengine]: https://developer.android.com/reference/javax/net/ssl/SSLEngine.html
     * [oracle_providers]: https://docs.oracle.com/javase/10/security/oracle-providers.htm
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 39.9K bytes
    - Viewed (0)
Back to top