Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for touched (0.31 sec)

  1. cluster/gce/gci/configure-helper.sh

        write-pki-data "${CLOUD_PVL_ADMISSION_CERT}" "${CLOUD_PVL_ADMISSION_CERT_PATH}"
      fi
    }
    
    # After the first boot and on upgrade, these files exist on the master-pd
    # and should never be touched again (except perhaps an additional service
    # account, see NB below.) One exception is if METADATA_CLOBBERS_CONFIG is
    # enabled.
    function create-master-auth {
      echo "Creating master auth files"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal_test.go

    		},
    		{
    			name:          "one outdated entry to be kept untouched without behavior",
    			replicaChange: 5,
    			prevScaleEvents: []timestampedScaleEvent{
    				{7, time.Now().Add(-time.Second * time.Duration(61)), false}, // outdated event, should be replaced
    			},
    			newScaleEvents: []timestampedScaleEvent{
    				{7, time.Now(), false}, // no behavior -> we don't touch stored events
    			},
    			expectedReplicasChange: 0,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    		gcStart(gcTrigger{kind: gcTriggerTime, now: nanotime()})
    	}
    }
    
    // Gosched yields the processor, allowing other goroutines to run. It does not
    // suspend the current goroutine, so execution resumes automatically.
    //
    //go:nosplit
    func Gosched() {
    	checkTimeouts()
    	mcall(gosched_m)
    }
    
    // goschedguarded yields the processor like gosched, but also checks
    // for forbidden states and opts out of the yield in those cases.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      if (!DeviceNameUtils::ParseFullName(node_def.device(), &parsed_name)) {
        return errors::InvalidArgument(
            "Op ", op_name, " has invalid device name: ", node_def.device());
      }
      // Keep the parsed name untouched if the device name is empty.
      if (!node_def.device().empty()) {
        if (!parsed_name.has_type) {
          parsed_name.type = "CPU";
          parsed_name.has_type = true;
        }
        if (!parsed_name.has_id) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    	timeout := time.After(5 * time.Second)
    	for atomic.LoadUint32(&finalized) == 0 {
    		select {
    		case <-timeout:
    			t.Fatal("finalizer did not run")
    		default:
    		}
    		runtime.Gosched()
    		runtime.GC()
    	}
    	runtime.KeepAlive(v)
    }
    
    func TestMakeFunc(t *testing.T) {
    	f := dummy
    	fv := MakeFunc(TypeOf(f), func(in []Value) []Value { return in })
    	ValueOf(&f).Elem().Set(fv)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    		// advertise it by touching the mtimes (usually the libraries are up
    		// to date).
    		if !a.buggyInstall && !b.IsCmdList {
    			if cfg.BuildN {
    				sh.ShowCmd("", "touch %s", a.Target)
    			} else if err := AllowInstall(a); err == nil {
    				now := time.Now()
    				os.Chtimes(a.Target, now, now)
    			}
    		}
    		return nil
    	}
    
    	// If we're building for go list -export,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    	if mode == http2Mode {
    		t.Skip("https://go.dev/issue/56021")
    	}
    
    	ts := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		runtime.Gosched()
    		w.WriteHeader(StatusOK)
    	})).ts
    
    	c := ts.Client()
    	c.Transport.(*Transport).MaxConnsPerHost = 1
    
    	ctx := context.Background()
    	body := []byte("Hello")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. src/cmd/trace/testdata/go122.test

    String id=16
    	data="preempted"
    String id=17
    	data="wait for debug call"
    String id=18
    	data="wait until GC ends"
    String id=19
    	data="sleep"
    String id=20
    	data="runtime.Gosched"
    String id=21
    	data="start trace"
    String id=22
    	data="GC sweep termination"
    String id=23
    	data="GC mark termination"
    String id=24
    	data="syscall.read"
    String id=25
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/tests/go122-gc-stress.test

    String id=16
    	data="preempted"
    String id=17
    	data="wait for debug call"
    String id=18
    	data="wait until GC ends"
    String id=19
    	data="sleep"
    String id=20
    	data="runtime.Gosched"
    String id=21
    	data="GC mark termination"
    String id=22
    	data="runtime.traceAdvance"
    String id=23
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2.go"
    String id=24
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
Back to top