Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for Malley (0.12 sec)

  1. src/net/http/h2_bundle.go

    	// a TLS-TCP connection) to an HTTP/2 server. On success, the
    	// returned ClientConn accounts for the upcoming RoundTrip
    	// call, so the caller should not omit it. If the caller needs
    	// to, ClientConn.RoundTrip can be called with a bogus
    	// new(http.Request) to release the stream reservation.
    	GetClientConn(req *Request, addr string) (*http2ClientConn, error)
    	MarkDead(*http2ClientConn)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. doc/go_spec.html

    string, <code>&amp;s[i]</code> is invalid.
    </p>
    
    
    <h3 id="Array_types">Array types</h3>
    
    <p>
    An array is a numbered sequence of elements of a single
    type, called the element type.
    The number of elements is called the length of the array and is never negative.
    </p>
    
    <pre class="ebnf">
    ArrayType   = "[" ArrayLength "]" ElementType .
    ArrayLength = Expression .
    ElementType = Type .
    </pre>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    // callTargetLSym returns the correct LSym to call 'callee' using its ABI.
    func callTargetLSym(callee *ir.Name) *obj.LSym {
    	if callee.Func == nil {
    		// TODO(austin): This happens in case of interface method I.M from imported package.
    		// It's ABIInternal, and would be better if callee.Func was never nil and we didn't
    		// need this case.
    		return callee.Linksym()
    	}
    
    	return callee.LinksymABI(callee.Func.ABI)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-65156`](https://youtrack.jetbrains.com/issue/KT-65156) Calls to `callBy` that use default arguments fail with `KotlineReflectionInternalError` when the argument size is a multiple of 32 in a constructor that contains `value class` as a parameter
    - [`KT-57972`](https://youtrack.jetbrains.com/issue/KT-57972) Reflection: "KotlinReflectionInternalError" when using `callBy` with overridden function in inline class
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    		}
    	}
    	return allErrors
    }
    
    // validateEphemeralContainers is called by pod spec and template validation to validate the list of ephemeral containers.
    // Note that this is called for pod template even though ephemeral containers aren't allowed in pod templates.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.15.md

      2. if there's a transient error happened during "provisioning/deletion", i.e., a volume is still in-use while a deleteVolume has been called, original `storage_operation_duration_seconds` will NOT wait until a volume has been finally deleted before reporting an inaccurate latency metric. The newly implemented metric `volume_operation_total_seconds`, however, waits until a provisioning/deletion...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %20 = "tf.IfRegion"(%19) ({
        %72 = "func.call"(%19, %17, %4) {callee = @RaggedFromNestedRowSplits_RaggedFromRowSplits_RowPartitionFromRowSplits_assert_equal_1_Assert_AssertGuard_true_27770} : (tensor<i1>, tensor<i64>, tensor<i64>) -> tensor<i1>
        "tf.Yield"(%72) : (tensor<i1>) -> ()
      },  {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    func.func @no_args_and_results() {
      // CHECK: call @callee() : () -> ()
      // CHECK: call @callee() : () -> ()
      // CHECK: call @callee() : () -> ()
      "tf.PartitionedCall"() {config = "", config_proto = "", executor_type = "", f = @callee} : () -> ()
      "tf.StatefulPartitionedCall"() {config = "", config_proto = "", executor_type = "", f = @callee} : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.30.md

    ### Bug or Regression
    
    - Currently, NodeAdded QueueingHint could not always be called because of the internal feature called preCheck.
      It's definitely not something expected for plugin developers,
      and we're trying to eventually remove preCheck completely to fix this.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top