Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 312 for wall (0.05 sec)

  1. src/html/template/escape_test.go

    		},
    		{
    			"JS multiline block comment",
    			"<script>for (;;) { if (c()) break/* foo not a label\n" +
    				" */foo({{.T}});}</script>",
    			// Newline separates break from call. If newline
    			// removed, then break will consume label leaving
    			// code invalid.
    			"<script>for (;;) { if (c()) break\n" +
    				"foo( true );}</script>",
    		},
    		{
    			"JS single-line block comment",
    			"<script>for (;;) {\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

          if ty in _ATTRIBUTE_TYPES and out_type == TFRTypes.TENSOR_LIST:
            # This list is a tensor list, then cast all the input values to tensors.
            val, ty = self._value_to_tensor(val, ty, node)
          else:
            # We shouldn't use index type to build the list because list will be use
            # as attribute.
            val, ty = self._index_to_I64(val, ty)
          vals.append(val)
          tys.append(str(ty))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  3. src/go/parser/parser.go

    	}
    
    	pos := p.expect(token.GO)
    	call := p.parseCallExpr("go")
    	p.expectSemi()
    	if call == nil {
    		return &ast.BadStmt{From: pos, To: pos + 2} // len("go")
    	}
    
    	return &ast.GoStmt{Go: pos, Call: call}
    }
    
    func (p *parser) parseDeferStmt() ast.Stmt {
    	if p.trace {
    		defer un(trace(p, "DeferStmt"))
    	}
    
    	pos := p.expect(token.DEFER)
    	call := p.parseCallExpr("defer")
    	p.expectSemi()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

        }
    
        def "queries initial value for every call to get()"() {
            expect:
            def initialValue = toMutable(["abc"])
            property.set(initialValue)
            assertValueIs(["abc"])
            initialValue.add("added")
            assertValueIs(["abc", "added"])
        }
    
        def "queries underlying provider for every call to get()"() {
            def provider = Stub(ProviderInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            property.explicit
        }
    
        def "'#label' vs undefined-safety"() {
            given:
            initial.each { operation ->
                operation.call(property)
            }
    
            when:
            operations.each {operation -> operation.call(property) }
    
            then:
            expected == null || property.getOrNull() == ImmutableMap.copyOf(expected)
            expected != null || !property.present
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    		c.closeNotifySent = true
    		// Any subsequent writes will fail.
    		c.SetWriteDeadline(time.Now())
    	}
    	return c.closeNotifyErr
    }
    
    // Handshake runs the client or server handshake
    // protocol if it has not yet been run.
    //
    // Most uses of this package need not call Handshake explicitly: the
    // first [Conn.Read] or [Conn.Write] will call it automatically.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/types.go

    	// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
    	// sideEffects == Unknown or Some. Defaults to Unknown.
    	// +optional
    	SideEffects *SideEffectClass
    
    	// TimeoutSeconds specifies the timeout for this webhook. After the timeout passes,
    	// the webhook call will be ignored or the API call will fail based on the
    	// failure policy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "not owner"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "I/O error"},
    	{6, "ENXIO", "no such device or address"},
    	{7, "E2BIG", "arg list too long"},
    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file number"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * @see Project#beforeEvaluate(Action)
         *
         * @param closure The closure to call.
         */
        void beforeEvaluate(Closure closure);
    
        /**
         * <p>Adds a closure to call immediately after this project is evaluated.</p>
         *
         * @see Project#afterEvaluate(Action)
         *
         * @param closure The closure to call.
         */
        void afterEvaluate(@DelegatesTo(Project.class) Closure closure);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    Factors operations into subroutines such that all functions only
    contain a single dialect. Which of the dialects are allowed in the
    "top" function is configurable.
    
    For example, the code
      x.a()
      x.b()
      %c = y.c()
      x.d(%c)
    would be transformed into something like
      call @x_1()
      %c = call @y_1()
      call @x_2(%c)
    with @x_1, @x_2 and @y_1 filled in.
    ### `-tf-guarantee-all-funcs-one-use`
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top