Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 157 for elided (0.23 sec)

  1. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    And that is why we started instrumenting bytecode.
    
    Later, with a requirement to migrate Gradle core APIs to lazy properties, we were looking at how we could make old plugins compatible with new Gradle core APIs. 
    We decided that upgrading old compiled bytecode would work well. 
    And reusing configuration cache bytecode instrumentation infrastructure seemed like a good idea.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    				ID:        *cid,
    				Image:     imageSpec.Image,
    				State:     kubecontainer.ContainerStateRunning,
    				CreatedAt: time.Unix(0, createdAt),
    				StartedAt: time.Unix(0, startedAt),
    			},
    		},
    		"exited container": {
    			input: &runtimeapi.ContainerStatus{
    				Id:         cid.ID,
    				Metadata:   meta,
    				Image:      imageSpec,
    				State:      runtimeapi.ContainerState_CONTAINER_EXITED,
    				CreatedAt:  createdAt,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	{12, "SIGUSR2", "user defined signal 2"},
    	{13, "SIGPIPE", "broken pipe"},
    	{14, "SIGALRM", "alarm clock"},
    	{15, "SIGTERM", "terminated"},
    	{16, "SIGSTKFLT", "stack fault"},
    	{17, "SIGCHLD", "child exited"},
    	{18, "SIGCONT", "continued"},
    	{19, "SIGSTOP", "stopped (signal)"},
    	{20, "SIGTSTP", "stopped"},
    	{21, "SIGTTIN", "stopped (tty input)"},
    	{22, "SIGTTOU", "stopped (tty output)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        filesystem.deleteRecursively(cacheDir)
        assertThat(cache["a"]).isNull()
      }
    
      /**
       * We had a long-lived bug where [DiskLruCache.trimToSize] could infinite loop if entries
       * being edited required deletion for the operation to complete.
       */
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  5. build/common.sh

    ${docker_output}
    
    To retry manually, run:
    
    DOCKER_CLI_EXPERIMENTAL=enabled ${build_cmd[*]}
    
    EOF
        return 1
      }
    }
    
    function kube::build::ensure_data_container() {
      # If the data container exists AND exited successfully, we can use it.
      # Otherwise nuke it and start over.
      local ret=0
      local code=0
    
      code=$(docker inspect \
          -f '{{.State.ExitCode}}' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    		// terminated.
    		if !dswp.podStateProvider.ShouldPodRuntimeBeRemoved(volumeToMount.Pod.UID) {
    			klog.V(4).InfoS("Pod still has one or more containers in the non-exited state and will not be removed from desired state", "pod", klog.KObj(volumeToMount.Pod))
    			continue
    		}
    		var volumeToMountSpecName string
    		if volumeToMount.VolumeSpec != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. src/syscall/syscall_linux_test.go

    				}
    			}
    
    			// Provide an explicit opportunity for this Go
    			// routine to change Ms.
    			runtime.Gosched()
    
    			if once {
    				// One waiter routine will have exited.
    				routines--
    			}
    
    			// Whatever M we are now running on, confirm
    			// we see the wanted value too.
    			if v, _, e := syscall.Syscall(syscall.SYS_PRCTL, PR_GET_KEEPCAPS, 0, 0); e != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. src/testing/benchmark.go

    			pb := &PB{
    				globalN: &n,
    				grain:   grain,
    				bN:      uint64(b.N),
    			}
    			body(pb)
    		}()
    	}
    	wg.Wait()
    	if n.Load() <= uint64(b.N) && !b.Failed() {
    		b.Fatal("RunParallel: body exited without pb.Next() == false")
    	}
    }
    
    // SetParallelism sets the number of goroutines used by [B.RunParallel] to p*GOMAXPROCS.
    // There is usually no need to call SetParallelism for CPU-bound benchmarks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof.go

    // output to a writer during profiling.
    //
    // # Heap profile
    //
    // The heap profile reports statistics as of the most recently completed
    // garbage collection; it elides more recent allocation to avoid skewing
    // the profile away from live data and toward garbage.
    // If there has been no garbage collection at all, the heap profile reports
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    			t.Errorf("No container defined with name %v", name)
    		}
    		info.Spec.Memory.Limit = memoryLimitOverride
    		infos[name] = info
    	}
    	// any container for which cadvisor should return no stats (as might be the case for an exited init container)
    	nostatsOverrides := []string{
    		"/pod3-c0-init",
    	}
    	for _, name := range nostatsOverrides {
    		info, found := infos[name]
    		if !found {
    			t.Errorf("No container defined with name %v", name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top