Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 107 for OUT (0.06 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        %0 = tf_executor.graph {
          // CHECK: tf_executor.NextIteration.Source
          // CHECK-SAME: : tensor<32x?x4xf32>
          %1:3 = tf_executor.NextIteration.Source : tensor<?x?x?xf32>
          %out, %c_out = tf_executor.island {
            %dims = "tf.Const"() {value = dense<[32, -1, 4]> : tensor<3xi32>} : () -> tensor<3xi32>
            // CHECK: "tf.Reshape"
            // CHECK-SAME: -> tensor<32x?x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        }
    
        // Calculate new bias.  Generate a new FC; it will be constant folded.
        auto old_bias = fc_op.getBias();
        if (!old_bias || mlir::isa<NoneType>(old_bias.getType())) {
          // TODO(b/180752069): Figure out new bias' type when old bias is empty.
          return failure();
        }
    
        // The FC relies on constant folding, which is implemented on F32. Checks
        // types to be F32.
        {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    						}
    				},
    				"exp": %d
    			}`, valid.Unix()),
    			want: &user.DefaultInfo{
    				Name: "jane",
    			},
    		},
    		{
    			// if the groups claim isn't provided, this shouldn't error out
    			name: "no-groups-claim",
    			options: Options{
    				JWTAuthenticator: apiserver.JWTAuthenticator{
    					Issuer: apiserver.Issuer{
    						URL:       "https://auth.example.com",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CacheTest.kt

        testClientPrematureDisconnect(TransferKind.END_OF_STREAM)
      }
    
      private fun testClientPrematureDisconnect(transferKind: TransferKind) {
        // Setting a low transfer speed ensures that stream discarding will time out.
        val builder =
          MockResponse.Builder()
            .throttleBody(6, 1, TimeUnit.SECONDS)
        transferKind.setBody(builder, "ABCDE\nFGHIJKLMNOPQRSTUVWXYZ", 1024)
        server.enqueue(builder.build())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller_test.go

    			expectedSucceeded:       1,
    			expectedFailed:          1,
    			expectedCondition:       batch.JobFailed,
    			expectedConditionReason: batch.JobReasonDeadlineExceeded,
    		},
    		"activeDeadlineSeconds times-out before any pod starts": {
    			parallelism:             1,
    			completions:             1,
    			activeDeadlineSeconds:   10,
    			startTime:               10,
    			backoffLimit:            6,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

          source.readByte() // If Content-Length was accurate, this would return -1 immediately.
        }
        source.close()
      }
    
      /** Confirm that an unacknowledged write times out.  */
      @Test
      fun writeTimeouts() {
        val server = MockWebServer()
        // Sockets on some platforms can have large buffers that mean writes do not block when
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

              <description>The name of the file that must exist to activate the profile.</description>
            </field>
          </fields>
        </class>
        <!--
        This can be put back in when we figure out how to have multiple model versions
        <class>
          <name>ActivationCustom</name>
          <version>4.1.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. src/debug/elf/elf.go

     * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     * SUCH DAMAGE.
     */
    
    package elf
    
    import "strconv"
    
    /*
     * Constants
     */
    
    // Indexes into the Header.Ident array.
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller_test.go

    			delay := manager.failedPodsBackoff.Get(backoffKey)
    			if delay != initialDelay {
    				t.Fatal("Backoff delay shouldn't be raised while waiting.")
    			}
    
    			resetCounters(manager)
    
    			// Sleep to wait out backoff
    			fakeClock := manager.failedPodsBackoff.Clock
    
    			// Move just before the backoff end time
    			fakeClock.Sleep(delay - 1*time.Nanosecond)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers.go

    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    	row.Cells = append(row.Cells, obj.Status, string(obj.Reason), obj.Message)
    
    	return []metav1.TableRow{row}, nil
    }
    
    // Lay out all the containers on one line if use wide output.
    func layoutContainerCells(containers []api.Container) (names string, images string) {
    	var namesBuffer bytes.Buffer
    	var imagesBuffer bytes.Buffer
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top