Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for kill (0.05 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    }
    
    // -----
    
    // Test invalid tf.Fill
    func.func @testFill(tensor<i32>, tensor<f32>) -> tensor<?x?xf32> {
    ^bb0(%arg0: tensor<i32>, %arg1: tensor<f32>):
      // expected-error @+1 {{requires dims to be a 1D tensor}}
      %0 = "tf.Fill"(%arg0, %arg1) : (tensor<i32>, tensor<f32>) -> (tensor<?x?xf32>)
      func.return %0 : tensor<?x?xf32>
    }
    
    // -----
    
    // Test invalid tf.Fill
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

          client.newCall(request).execute()
        }
      }
    
      /**
       * Make a request with two routes. The first route will time out because it's connecting to a
       * special address that never connects. The automatic retry will succeed.
       */
      @Test
      fun connectTimeoutsAttemptsAlternateRoute() {
        val proxySelector = RecordingProxySelector()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  3. src/crypto/x509/x509_test.go

    				0x02, 1, // INTEGER, 1 byte
    				17,
    				0x02, 5, // INTEGER, 5 bytes
    				0x00, 0x80, 0x00, 0x00, 0x00,
    			},
    			// On 64-bit systems, encoding/asn1 will accept the
    			// public exponent, but ParsePKCS1PublicKey will return
    			// an error. On 32-bit systems, encoding/asn1 will
    			// return the error. The common substring of both error
    			// is the word “large”.
    			expectedErrSubstr: "large",
    		},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  4. src/reflect/value.go

    	}
    }
    
    // Equal reports true if v is equal to u.
    // For two invalid values, Equal will report true.
    // For an interface value, Equal will compare the value within the interface.
    // Otherwise, If the values have different types, Equal will report false.
    // Otherwise, for arrays and structs Equal will compare each element in order,
    // and report false if it finds non-equal elements.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/policy_static_test.go

    					v1.ResourceMemory: 512 * mb,
    				},
    			},
    			expectedError: fmt.Errorf("[memorymanager] machine state can not be empty when it has memory assignments"),
    		},
    		{
    			description:         "should fill the state with default values, when the state is empty",
    			expectedAssignments: state.ContainerMemoryAssignments{},
    			expectedMachineState: state.NUMANodeMap{
    				0: &state.NUMANodeState{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/asmz.go

    		C_NONE, // p.RestArgs[2]
    		p.To.Class - 1,
    	}
    	// Fill in argument class for p.Reg.
    	switch {
    	case REG_R0 <= p.Reg && p.Reg <= REG_R15:
    		args[1] = C_REG
    	case REG_V0 <= p.Reg && p.Reg <= REG_V31:
    		args[1] = C_VREG
    	case REG_F0 <= p.Reg && p.Reg <= REG_F15:
    		args[1] = C_FREG
    	case REG_AR0 <= p.Reg && p.Reg <= REG_AR15:
    		args[1] = C_AREG
    	}
    	// Fill in argument classes for p.RestArgs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        // In that case, `yDefOp` stores this tf.Const op.
        // Note that if `y` is a block argument, `y.getDefiningOp()` will return
        // null, which will get propogated by dyn_cast_or_null to `yDefOp`.
        // Further, if `y` is defined by an op other than tf.Const,
        // `y.getDefiningOp()` will not return null but dyn_cast_or_null will.
        if (auto yDefOp = dyn_cast_or_null<TF::ConstOp>(y.getDefiningOp())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::vector<std::vector<Operation*>> subgraph_op_inst_map_;
      // A list of subgraphs in the model
      std::vector<BufferOffset<tflite::SubGraph>> subgraphs_;
    
      // Will be populated by ExtractControlEdges to contain the control
      // dependencies contained in the ControlNodeOps. Will then be used to populate
      // metadata in the exported flatbuffer file.
      tflite::ModelControlDependencies model_control_dependencies_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. src/database/sql/sql_test.go

    	defer closeDB(t, db)
    	prepares0 := numPrepares(t, db)
    
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	// This will trigger the *fakeConn.Prepare method which will take time
    	// performing the query. The ctxDriverPrepare func will check the context
    	// after this and close the rows and return an error.
    	c, err := db.Conn(ctx)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  10. samples/addons/grafana.yaml

    are intended to show Istio main components cost in terms of resources utilization under steady load.\n\n- **vCPU / 1k rps:** shows vCPU utilization by the main Istio components normalized by 1000 requests/second. When idle or low traffic, this chart will be blank. The curve for istio-proxy refers to the services sidecars only.\n- **vCPU:** vCPU utilization by Istio components, not normalized.\n- **Memory:** memory footprint for the components. Telemetry and policy are normalized by 1k rps, and no data...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top