Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for getPids (0.19 sec)

  1. pkg/kubelet/cm/container_manager_linux.go

    		cont.ensureStateFunc = func(_ cgroups.Manager) error {
    			return ensureProcessInContainerWithOOMScore(os.Getpid(), int(cm.KubeletOOMScoreAdj), cont.manager)
    		}
    		systemContainers = append(systemContainers, cont)
    	} else {
    		cm.periodicTasks = append(cm.periodicTasks, func() {
    			if err := ensureProcessInContainerWithOOMScore(os.Getpid(), int(cm.KubeletOOMScoreAdj), nil); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. src/internal/cpu/cpu_arm64_hwcap.go

    	// check the AUXV for the CPUID bit. The getMIDR function executes an
    	// instruction which would normally be an illegal instruction, but it's
    	// trapped by the kernel, the value sanitized and then returned.
    	// Without the CPUID bit the kernel will not trap the instruction and the
    	// process will be terminated with SIGILL.
    	if ARM64.HasCPUID {
    		midr := getMIDR()
    		part_num := uint16((midr >> 4) & 0xfff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    	for _, p := range svc.Spec.Ports {
    		ports = append(ports, &workloadapi.Port{
    			ServicePort: uint32(p.Port),
    			TargetPort:  uint32(p.TargetPort.IntVal),
    		})
    	}
    
    	addresses, err := slices.MapErr(getVIPs(svc), a.toNetworkAddress)
    	if err != nil {
    		log.Warnf("fail to parse service %v: %v", config.NamespacedName(svc), err)
    		return nil
    	}
    	// handle svc waypoint scenario
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          is_scalar_rhs = true;
        } else if (constant_val_type.getRank() > 1) {
          return failure();
        }
    
        Value filter = fc_op.getFilter();
        Value bias = fc_op.getBias();
        ElementsAttr bias_value;
        const bool is_none_bias = mlir::isa<NoneType>(bias.getType());
        if (fc_op.getFusedActivationFunction() != "NONE") return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/provider-task-file-collection.txt

    Method <org.gradle.nativeplatform.tasks.InstallExecutable.getLibs()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (InstallExecutable.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

        }
    
        def "displays collections of scalar types in a human-readable format"() {
            given:
            buildFile << '''
    
    @Managed
    interface Container {
       List<String> getLabels()
       List<Integer> getIds()
       List<Double> getValues()
       void setValues(List<Double> values)
    }
    
    model {
        container(Container) {
            labels.add 'bug'
            labels.add 'blocker'
        }
    }
    '''
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

        // with `bias` from the BiasAddOp appended.
        SmallVector<Value, 4> operands(contraction.operand_begin(),
                                       contraction.operand_end());
        operands.push_back(bias_add.getBias());
    
        // The fused contraction has the same attributes as the original
        // contraction, with two additions: the list of ops which have been fused
        // together; epsilon (only with FusedBatchNorm).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.cc

                                                    output_type.getElementType());
      auto conv = rewriter.create<TFL::Conv2DOp>(
          fc_op.getLoc(), conv_output_type, reshaped_input, reshaped_weight,
          fc_op.getBias(), rewriter.getI32IntegerAttr(1),
          rewriter.getI32IntegerAttr(1), fc_op.getFusedActivationFunctionAttr(),
          rewriter.getStringAttr("VALID"), rewriter.getI32IntegerAttr(1),
          rewriter.getI32IntegerAttr(1));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  9. src/syscall/syscall_darwin.go

    //sysnb	Geteuid() (uid int)
    //sysnb	Getgid() (gid int)
    //sysnb	Getpgid(pid int) (pgid int, err error)
    //sysnb	Getpgrp() (pgrp int)
    //sysnb	Getpid() (pid int)
    //sysnb	Getppid() (ppid int)
    //sys	Getpriority(which int, who int) (prio int, err error)
    //sysnb	Getrlimit(which int, lim *Rlimit) (err error)
    //sysnb	Getrusage(who int, rusage *Rusage) (err error)
    //sysnb	Getsid(pid int) (sid int, err error)
    //sysnb	Getuid() (uid int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    		return nil
    	}
    
    	user := &kubecontainer.ContainerUser{}
    	if statusUser.GetLinux() != nil {
    		user.Linux = &kubecontainer.LinuxContainerUser{
    			UID:                statusUser.GetLinux().GetUid(),
    			GID:                statusUser.GetLinux().GetGid(),
    			SupplementalGroups: statusUser.GetLinux().GetSupplementalGroups(),
    		}
    	}
    
    	return user
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top