Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 413 for assignments (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

       * thread.
       */
      private static final class ThreadConfinedTaskQueue {
        /**
         * This field is only used for identity comparisons with the current thread. Field assignments
         * are atomic, but do not provide happens-before ordering; however:
         *
         * <ul>
         *   <li>If this field's value == currentThread, we know that it's up to date, because write
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/deadness_analysis.cc

      std::array<Predicate*, 2> operands_;
      std::vector<string> frame_;
    };
    
    // Represents an uninterpreted symbol in a logical predicate.
    //
    // Two predicates are equivalent iff they are equivalent for all assignments to
    // the symbols contained in them, i.e. predicates are forall qualified over
    // symbols.
    class SymbolPredicate : public Predicate {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

       * thread.
       */
      private static final class ThreadConfinedTaskQueue {
        /**
         * This field is only used for identity comparisons with the current thread. Field assignments
         * are atomic, but do not provide happens-before ordering; however:
         *
         * <ul>
         *   <li>If this field's value == currentThread, we know that it's up to date, because write
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/subr.go

    	}
    
    	// 1. src can be assigned to dst.
    	op, why := assignOp(src, dst)
    	if op != ir.OXXX {
    		return op, why
    	}
    
    	// The rules for interfaces are no different in conversions
    	// than assignments. If interfaces are involved, stop now
    	// with the good message from assignop.
    	// Otherwise clear the error.
    	if src.IsInterface() || dst.IsInterface() {
    		return ir.OXXX, why
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  10. src/text/template/parse/parse_test.go

    	{"break in range else", "{{range .}}{{else}}{{break}}{{end}}", hasError, ""},
    	{"continue in range else", "{{range .}}{{else}}{{continue}}{{end}}", hasError, ""},
    	// Other kinds of assignments and operators aren't available yet.
    	{"bug0a", "{{$x := 0}}{{$x}}", noError, "{{$x := 0}}{{$x}}"},
    	{"bug0b", "{{$x += 1}}{{$x}}", hasError, ""},
    	{"bug0c", "{{$x ! 2}}{{$x}}", hasError, ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top