Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for died (0.05 sec)

  1. src/cmd/go/internal/work/exec.go

    		// when building things in GOROOT.
    		//
    		// The C compiler does not, but for packages in GOROOT we rewrite the path
    		// as though -trimpath were set. This used to be so that we did not invalidate
    		// the build cache (and especially precompiled archive files) when changing
    		// GOROOT_FINAL, but we no longer ship precompiled archive files as of Go 1.20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/garbagecollector_test.go

    					}
    				}
    				if !reflect.DeepEqual(actualEvents, s.events) {
    					ctx.t.Logf("expected:\n%s", strings.Join(s.events, "\n"))
    					ctx.t.Logf("actual:\n%s", strings.Join(actualEvents, "\n"))
    					ctx.t.Fatalf("did not get expected events")
    				}
    			}
    
    			{
    				var actualClientActions []string
    				for _, action := range ctx.metadataClient.Actions() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	// pleg observes the state of the container runtime and notifies the kubelet of changes to containers, which
    	// notifies the podWorkers to reconcile the state of the pod (for instance, if a container dies and needs to
    	// be restarted).
    	pleg pleg.PodLifecycleEventGenerator
    
    	// eventedPleg supplements the pleg to deliver edge-driven container changes with low-latency.
    	eventedPleg pleg.PodLifecycleEventGenerator
    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/mlir/tensorflow/transforms/shape_inference.cc

          return WalkResult::advance();
        });
        if (res.wasInterrupted()) return failure();
      }
    
      if (changed) {
        region->getParentOp()->emitWarning()
            << "shape inference did not reach stable state after " << max_iterations
            << " iterations";
      }
      return !changed;
    }
    
    static FailureOr<bool> InferShapeForFunction(ShapeInference& context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_generator.go

    		globalMapPath := deviceToDetach.DeviceMountPath
    		refs, err := og.blkUtil.GetDeviceBindMountRefs(deviceToDetach.DevicePath, globalMapPath)
    		if err != nil {
    			if os.IsNotExist(err) {
    				// Looks like SetupDevice did not complete. Fall through to TearDownDevice and mark the device as unmounted.
    				refs = nil
    			} else {
    				eventErr, detailedErr := deviceToDetach.GenerateError("UnmapDevice.GetDeviceBindMountRefs check failed", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    		err = errnoErr(e1)
    	}
    	return
    }
    
    func setupDiCreateDeviceInfo(deviceInfoSet DevInfo, DeviceName *uint16, classGUID *GUID, DeviceDescription *uint16, hwndParent uintptr, CreationFlags DICD, deviceInfoData *DevInfoData) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    // We unpark an additional thread when we submit work if (this is wakep()):
    // 1. There is an idle P, and
    // 2. There are no "spinning" worker threads.
    //
    // A worker thread is considered spinning if it is out of local work and did
    // not find work in the global run queue or netpoller; the spinning state is
    // denoted in m.spinning and in sched.nmspinning. Threads unparked this way are
    // also considered spinning; we don't do goroutine handoff so such threads are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	// inner names to print.  Pass down our name as the one to use.
    	holdInner := ps.inner
    	defer func() { ps.inner = holdInner }()
    
    	ps.inner = []AST{t}
    	ps.print(t.Type)
    	if len(ps.inner) > 0 {
    		// The type did not print the name; print it now in
    		// the default location.
    		ps.writeByte(' ')
    		ps.print(t.Name)
    	}
    }
    
    func (t *Typed) printInner(ps *printState) {
    	ps.print(t.Name)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

          local filtered_feature_gates
          filtered_feature_gates=$(echo "${FEATURE_GATES}" | sed "s/,/\n/g" | { grep -E -v "(${CCM_FEATURE_GATES_FILTER})" || true; } | sed -z "s/\n/,/g;s/,$/\n/")
          echo "Feature gates that did not pass through the GCP filter:" "${filtered_feature_gates}"
        else
          echo "None of the given feature gates (${FEATURE_GATES}) were found to be safe to pass to the CCM"
        fi
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    	db, err := Open("test", fakeDBName)
    	if err != nil {
    		t.Fatalf("Open: %v", err)
    	}
    	expectPanic := func(name string, f func()) {
    		defer func() {
    			err := recover()
    			if err == nil {
    				t.Fatalf("%s did not panic", name)
    			}
    		}()
    		f()
    	}
    
    	expectPanic("Exec Exec", func() { db.Exec("PANIC|Exec|WIPE") })
    	exec(t, db, "WIPE") // check not deadlocked
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top