Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 128 for input1 (0.23 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

    // RUN: tf-opt %s -pass-pipeline='builtin.module(tf-executor-convert-control-to-data-outputs{composite-tpuexecute-side-effects})' -split-input-file -verify-diagnostics | FileCheck %s
    
    !tf_res = tensor<!tf_type.resource<tensor<f32>>>
    
    // Tests independent chains of two resources.
    
    // CHECK-LABEL: func @simple_independent_chains_while_body
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  2. src/go/printer/testdata/parser.go

    // Copyright 2009 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 parser implements a parser for Go source files. Input may be
    // provided in a variety of forms (see the various Parse* functions); the
    // output is an abstract syntax tree (AST) representing the Go source. The
    // parser is invoked through one of the Parse* functions.
    
    package parser
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  3. src/net/http/request.go

    	// Handler does not need to.
    	//
    	// Body must allow Read to be called concurrently with Close.
    	// In particular, calling Close should unblock a Read waiting
    	// for input.
    	Body io.ReadCloser
    
    	// GetBody defines an optional func to return a new copy of
    	// Body. It is used for client requests when a redirect requires
    	// reading the body more than once. Use of GetBody still
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

      }
    
      /**
       * When callers use `addEncodedQueryParameter()` we only encode what's strictly required. We
       * retain the encoded (or non-encoded) state of the input.
       */
      @Test
      fun queryCharactersNotReencodedWhenComposedWithAddEncoded() {
        val url =
          HttpUrl.Builder()
            .scheme("http")
            .host("host")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier.go

    				"--dport", strconv.Itoa(svcInfo.HealthCheckNodePort()),
    				"-j", "ACCEPT",
    			)
    		}
    
    		// If the SVC/SVL/EXT/FW/SEP chains have not changed since the last sync
    		// then we can omit them from the restore input. However, we have to still
    		// figure out how many chains we _would_ have written, to make the metrics
    		// come out right, so we just compute them and throw them away.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/elf.go

    			sh.Entsize = 8
    		} else {
    			sh.Entsize = 4
    		}
    		sh.Addralign = sh.Entsize
    		shsym(sh, ldr, ldr.Lookup(".plt", 0))
    
    		// On ppc64, .got comes from the input files, so don't
    		// create it here, and .got.plt is not used.
    		if elf.Machine(eh.Machine) != elf.EM_PPC64 {
    			sh := elfshname(".got")
    			sh.Type = uint32(elf.SHT_PROGBITS)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/obj.go

    	//     register, F = float register), in uppercase
    	//  3. the word "Encoding"
    	//
    	// For example, rIIIEncoding indicates an R-type instruction with two
    	// integer register inputs and an integer register output; sFEncoding
    	// indicates an S-type instruction with rs2 being a float register.
    
    	rIIIEncoding  = encoding{encode: encodeRIII, validate: validateRIII, length: 4}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p256_asm_s390x.s

     *
     *                                                                *Mi obra de arte de siglo XXI @vpaprots
     *
     *
     * First group is special, doesn't get the two inputs:
     *                                             +--------+--------+<-+
     *                                     +-------|  ADD2  |  ADD1  |--|-----+
     *                                     |       +--------+--------+  |     |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. cmd/admin-handlers-users.go

    	if objectAPI == nil {
    		return
    	}
    
    	vars := mux.Vars(r)
    	policyName := vars["name"]
    
    	// Policy has space characters in begin and end reject such inputs.
    	if hasSpaceBE(policyName) {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrAdminResourceInvalidArgument), r.URL)
    		return
    	}
    
    	// Error out if Content-Length is missing.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    // class boundary.
    //
    //go:nosplit
    func heapBitsInSpan(userSize uintptr) bool {
    	// N.B. minSizeForMallocHeader is an exclusive minimum so that this function is
    	// invariant under size-class rounding on its input.
    	return userSize <= minSizeForMallocHeader
    }
    
    // typePointers is an iterator over the pointers in a heap object.
    //
    // Iteration through this type implements the tiling algorithm described at the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top