Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 120 for stops (0.05 sec)

  1. src/runtime/asm_amd64.s

    	// by the compiler.
    	// Note that runtime.sehtramp can't be attached directly to asmcgocall
    	// because its initial stack pointer can be outside the system stack bounds,
    	// and Windows stops the stack unwinding without calling the exception handler
    	// when it reaches that point.
    	MOVQ	BX, CX		// CX = first argument in Win64
    	CALL	AX
    	// The exception handler is not called if the next instruction is part of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    		// Emit a FDE, Section 6.4.1.
    		// First build the section contents into a byte buffer.
    		deltaBuf = deltaBuf[:0]
    		if haslr && fi.TopFrame() {
    			// Mark the link register as having an undefined value.
    			// This stops call stack unwinders progressing any further.
    			// TODO: similar mark on non-LR architectures.
    			deltaBuf = append(deltaBuf, dwarf.DW_CFA_undefined)
    			deltaBuf = dwarf.AppendUleb128(deltaBuf, uint64(thearch.Dwarfreglr))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.h

    // Starts an in-process TensorFlow server.
    TF_CAPI_EXPORT extern void TF_ServerStart(TF_Server* server, TF_Status* status);
    
    // Stops an in-process TensorFlow server.
    TF_CAPI_EXPORT extern void TF_ServerStop(TF_Server* server, TF_Status* status);
    
    // Blocks until the server has been successfully stopped (via TF_ServerStop or
    // TF_ServerClose).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    	if t.IdleConnTimeout > 0 {
    		oldTime = time.Now().Add(-t.IdleConnTimeout)
    	}
    
    	// Look for most recently-used idle connection.
    	if list, ok := t.idleConn[w.key]; ok {
    		stop := false
    		delivered := false
    		for len(list) > 0 && !stop {
    			pconn := list[len(list)-1]
    
    			// See whether this connection has been idle too long, considering
    			// only the wall time (the Round(0)), in case this is a laptop or VM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    				// False-positives are ok: if we have a false-positive here, we'll do an
    				// extra iteration of package loading this time, but we'll still
    				// converge when the root set stops changing.
    				//
    				// In some sense, we can think of this as ‘upgraded the module providing
    				// pkg.path from "none" to a version higher than "none"’.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm/asm5.go

    		if p.From.Offset < 0 {
    			o1 &^= (1 << 23)
    			o1 |= uint32((-p.From.Offset) & 0xfff)
    		} else {
    			o1 |= uint32(p.From.Offset & 0xfff)
    		}
    
    	// This is supposed to be something that stops execution.
    	// It's not supposed to be reached, ever, but if it is, we'd
    	// like to be able to tell how we got there. Assemble as
    	// 0xf7fabcfd which is guaranteed to raise undefined instruction
    	// exception.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/grafana/minio-dashboard.json

                      "text": "N/A"
                    }
                  },
                  "type": "special"
                }
              ],
              "thresholds": {
                "mode": "percentage",
                "steps": [
                  {
                    "color": "green",
                    "value": null
                  }
                ]
              },
              "unit": "dtdurations"
            },
            "overrides": []
          },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

                },
                "thresholdsStyle": {
                  "mode": "off"
                }
              },
              "mappings": [],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
                    "value": null
                  },
                  {
                    "color": "red",
                    "value": 80
                  }
                ]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json

                },
                "thresholdsStyle": {
                  "mode": "off"
                }
              },
              "mappings": [],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
                    "value": null
                  },
                  {
                    "color": "red",
                    "value": 80
                  }
                ]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. pkg/controller/history/controller_history_test.go

    		client := fake.NewSimpleClientset()
    		informerFactory := informers.NewSharedInformerFactory(client, controller.NoResyncPeriodFunc())
    
    		stop := make(chan struct{})
    		defer close(stop)
    		informerFactory.Start(stop)
    		informer := informerFactory.Apps().V1().ControllerRevisions()
    		informerFactory.WaitForCacheSync(stop)
    		for i := range test.revisions {
    			informer.Informer().GetIndexer().Add(test.revisions[i])
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
Back to top