Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,105 for p_hold (0.21 sec)

  1. tensorflow/compiler/aot/tests/test_graph_tfcond.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "p_hold" }
      shape {}
    }
    feed {
      id { node_name: "x_hold" }
      shape {
        dim { size: 1 }
      }
    }
    feed {
      id { node_name: "y_hold" }
      shape {
        dim { size: 1 }
      }
    }
    fetch {
      id { node_name: "result" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 08 01:00:16 UTC 2018
    - 279 bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tests/make_test_graphs.py

      x = array_ops.placeholder(dtypes.int32, name='x_hold')
      y = array_ops.placeholder(dtypes.int32, name='y_hold')
      control_flow_assert.Assert(
          math_ops.equal(x, y), ['Expected x == y.'], name='assert_eq')
      math_ops.add(x, math_ops.negative(y), name='x_y_diff')
    
    
    def tfcond(_):
      p = array_ops.placeholder(dtypes.bool, name='p_hold')
      x = array_ops.placeholder(dtypes.int32, name='x_hold')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/tests/test_graph_tfmatmulandadd.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "x_hold" }
      shape {
        dim { size: 2 }
        dim { size: 2 }
      }
      name: "x"
    }
    feed {
      id { node_name: "y_hold" }
      shape {
        dim { size: 2 }
        dim { size: 2 }
      }
      name: "y"
    }
    fetch {
      id { node_name: "x_y_prod" }
      name: "x_y_prod"
    }
    fetch {
      id { node_name: "x_y_sum" }
      name: "x_y_sum"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 16 02:38:25 UTC 2017
    - 373 bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/tests/test_graph_tfmatmul.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "x_hold" }
      shape {
        dim { size: 2 }
        dim { size: 3 }
      }
    }
    feed {
      id { node_name: "y_hold" }
      shape {
        dim { size: 3 }
        dim { size: 2 }
      }
    }
    fetch {
      id { node_name: "x_y_prod" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 16 02:38:25 UTC 2017
    - 272 bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/tests/bench_graph_tfmatmul.template.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "x_hold" }
      shape {
        dim { size: <M> }
        dim { size: <K> }
      }
    }
    feed {
      id { node_name: "y_hold" }
      shape {
        dim { size: <K> }
        dim { size: <N> }
      }
    }
    fetch {
      id { node_name: "x_y_prod" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 24 15:53:56 UTC 2023
    - 280 bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/tests/test_graph_tfassert_eq.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "x_hold" }
      shape {
        dim { size: 1 }
      }
    }
    feed {
      id { node_name: "y_hold" }
      shape {
        dim { size: 1 }
      }
    }
    fetch {
      id { node_name: "x_y_diff" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 13 00:15:33 UTC 2018
    - 232 bytes
    - Viewed (0)
  7. cmd/bucket-object-lock.go

    func enforceRetentionForDeletion(ctx context.Context, objInfo ObjectInfo) (locked bool) {
    	if objInfo.DeleteMarker {
    		return false
    	}
    
    	lhold := objectlock.GetObjectLegalHoldMeta(objInfo.UserDefined)
    	if lhold.Status.Valid() && lhold.Status == objectlock.LegalHoldOn {
    		return true
    	}
    
    	ret := objectlock.GetObjectRetentionMeta(objInfo.UserDefined)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. pkg/kubelet/prober/worker_test.go

    		if !w.onHold {
    			t.Errorf("Prober should be on hold due to %s check failure", probeType)
    		}
    
    		// Set a new container ID to lift the hold. The next probe will succeed.
    		status.ContainerStatuses[0].ContainerID = "test://newCont_ID"
    		m.statusManager.SetPodStatus(w.pod, status)
    		msg = "hold lifted"
    		expectContinue(t, w, w.doProbe(ctx), msg)
    		expectResult(t, w, results.Success, msg)
    		if w.onHold {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 23:48:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  9. internal/bucket/object/lock/lock.go

    func ParseObjectLockLegalHoldHeaders(h http.Header) (lhold ObjectLegalHold, err error) {
    	holdStatus, ok := h[AmzObjectLockLegalHold]
    	if ok {
    		lh := parseLegalHoldStatus(holdStatus[0])
    		if !lh.Valid() {
    			return lhold, ErrUnknownWORMModeDirective
    		}
    		lhold = ObjectLegalHold{XMLNS: "http://s3.amazonaws.com/doc/2006-03-01/", Status: lh}
    	}
    	return lhold, nil
    }
    
    // ObjectLegalHold specified in
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. pkg/kubelet/prober/worker.go

    		}
    		w.containerID = kubecontainer.ParseContainerID(c.ContainerID)
    		w.resultsManager.Set(w.containerID, w.initialValue, w.pod)
    		// We've got a new container; resume probing.
    		w.onHold = false
    	}
    
    	if w.onHold {
    		// Worker is on hold until there is a new container.
    		return true
    	}
    
    	if c.State.Running == nil {
    		klog.V(3).InfoS("Non-running container probed",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top