Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Gdead (0.06 sec)

  1. src/runtime/proc.go

    		newg = malg(stackMin)
    		casgstatus(newg, _Gidle, _Gdead)
    		allgadd(newg) // publishes with a g->status of Gdead so GC scanner doesn't look at uninitialized stack.
    	}
    	if newg.stack.hi == 0 {
    		throw("newproc1: newg missing stack")
    	}
    
    	if readgstatus(newg) != _Gdead {
    		throw("newproc1: new g is not Gdead")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    		stmt, err := db.Prepare("INSERT|t1|name=?,age=?,dead=?")
    		if err != nil {
    			return err
    		}
    		stmt.Close()
    		return nil
    	})
    
    	// Provide a way to force a re-prepare of a statement on next execution
    	forcePrepare := func(stmt *Stmt) {
    		stmt.css = nil
    	}
    
    	// stmt.Exec
    	stmt1, err := db.Prepare("INSERT|t1|name=?,age=?,dead=?")
    	if err != nil {
    		t.Fatalf("prepare: %v", 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)
  3. pkg/kubelet/kubelet.go

    		DynamicResources: kl.containerManager,
    	}
    
    	server.ListenAndServePodResources(endpoint, providers)
    }
    
    // Delete the eligible dead container instances in a pod. Depending on the configuration, the latest dead containers may be kept around.
    func (kl *Kubelet) cleanUpContainersInPod(podID types.UID, exitedContainerID string) {
    	if podStatus, err := kl.podCache.Get(podID); err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          return s;
        }
      }
      // Reset "_device_ordinal" to placeholder value.
      TF_RETURN_IF_ERROR(ResetDeviceOrdinalToPlaceholderValue(host_graph->get()));
    
      // sequencer and key_placeholder might be dead nodes. Prune them if necessary.
      // - sequencer should be pruned iff it has no input control edges from
      //   RecvAtHost/SendFromHost. If it has input control edge, we connect it to
      //   sink node so it won't be pruned.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    on the socket to enable TCP Keepalives. properties: interval: description: The time duration between keep-alive probes. type: string probes: description: Maximum number of keepalive probes to send without response before deciding the connection is dead. type: integer time: description: The time duration a connection needs to be idle before keep-alive probes start being sent. type: string type: object type: object type: object loadBalancer: description: Settings controlling the load balancer algorithms....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

           resource is written later.
    
        Assumption of this pass:
         . Compound resource operations have already been decomposed.
         . Dead functions have already been removed, as resource arguments in dead
           functions can cause the pass to fail.
      }];
    
      let constructor = "TF::CreatePromoteResourcesToArgsPass()";
    
    let options = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `So you did, old fellow!' said the others.
    
      `We must burn the house down!' said the Rabbit's voice; and
    Alice called out as loud as she could, `If you do.  I'll set
    Dinah at you!'
    
      There was a dead silence instantly, and Alice thought to
    herself, `I wonder what they WILL do next!  If they had any
    sense, they'd take the roof off.'  After a minute or two, they
    began moving about again, and Alice heard the Rabbit say, `A
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `So you did, old fellow!' said the others.
    
      `We must burn the house down!' said the Rabbit's voice; and
    Alice called out as loud as she could, `If you do.  I'll set
    Dinah at you!'
    
      There was a dead silence instantly, and Alice thought to
    herself, `I wonder what they WILL do next!  If they had any
    sense, they'd take the roof off.'  After a minute or two, they
    began moving about again, and Alice heard the Rabbit say, `A
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "boolean"
            },
            "restartCount": {
              "description": "The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection. This value will get capped at 5 by GC.",
              "format": "int32",
              "type": "integer"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // stateless, then inlining the region could cause a loss of information.
      // However, its probably better to fold the IfRegion instead of having the
      // dead branch stay.
    
      // Inline the region in place of the IfRegion op, and forward the yield
      // inputs to the IfRegion op results. This is possible only if the yield
      // types match the result types.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top