Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 145 for int2 (0.04 sec)

  1. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    	st "k8s.io/kubernetes/pkg/scheduler/testing"
    	tf "k8s.io/kubernetes/pkg/scheduler/testing/framework"
    )
    
    var (
    	negPriority, lowPriority, midPriority, highPriority, veryHighPriority = int32(-100), int32(0), int32(100), int32(1000), int32(10000)
    
    	smallRes = map[v1.ResourceName]string{
    		v1.ResourceCPU:    "100m",
    		v1.ResourceMemory: "100",
    	}
    	mediumRes = map[v1.ResourceName]string{
    		v1.ResourceCPU:    "200m",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller_test.go

    					Protocol: protoPtr(v1.ProtocolSCTP),
    					Port:     pointer.Int32(3456),
    				},
    				{
    					Name:     pointer.String("udp-example"),
    					Protocol: protoPtr(v1.ProtocolUDP),
    					Port:     pointer.Int32(161),
    				},
    				{
    					Name:     pointer.String("tcp-example"),
    					Protocol: protoPtr(v1.ProtocolTCP),
    					Port:     pointer.Int32(80),
    				},
    			},
    			expectedEndpoints: []discovery.Endpoint{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    	p := c.idleMarkWorkers.Load()
    	n, max := int32(p&uint64(^uint32(0))), int32(p>>32)
    	return n < max
    }
    
    // removeIdleMarkWorker must be called when a new idle mark worker stops executing.
    func (c *gcControllerState) removeIdleMarkWorker() {
    	for {
    		old := c.idleMarkWorkers.Load()
    		n, max := int32(old&uint64(^uint32(0))), int32(old>>32)
    		if n-1 < 0 {
    			print("n=", n, " max=", max, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ppc64/asm.go

    		o1 &^= 0x3ffff
    		o2 &^= 0x0ffff
    		o1 |= computePrefix34HI(t)
    		o2 |= computeLO(int32(t))
    	case objabi.R_ADDRPOWER_D34:
    		o1 &^= 0x3ffff
    		o2 &^= 0x0ffff
    		o1 |= computePrefix34HI(t)
    		o2 |= computeLO(int32(t))
    	case objabi.R_ADDRPOWER:
    		o1 &^= 0xffff
    		o2 &^= 0xffff
    		o1 |= computeHA(int32(t))
    		o2 |= computeLO(int32(t))
    	case objabi.R_ADDRPOWER_DS:
    		o1 &^= 0xffff
    		o2 &^= 0xfffc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    }
    
    // PopulateABIInRegArgOps examines the entry block of the function
    // and looks for incoming parameters that have missing or partial
    // OpArg{Int,Float}Reg values, inserting additional values in
    // cases where they are missing. Example:
    //
    //	func foo(s string, used int, notused int) int {
    //	  return len(s) + used
    //	}
    //
    // In the function above, the incoming parameter "used" is fully live,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.pb.go

    	return protoreflect.EnumNumber(x)
    }
    
    // Deprecated: Use WorkloadStatus.Descriptor instead.
    func (WorkloadStatus) EnumDescriptor() ([]byte, []int) {
    	return file_workloadapi_workload_proto_rawDescGZIP(), []int{0}
    }
    
    type WorkloadType int32
    
    const (
    	WorkloadType_DEPLOYMENT WorkloadType = 0
    	WorkloadType_CRONJOB    WorkloadType = 1
    	WorkloadType_POD        WorkloadType = 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    	elfSym      map[Sym]int32       // stores elf sym symbol property
    	localElfSym map[Sym]int32       // stores "local" elf sym symbol property
    	symPkg      map[Sym]string      // stores package for symbol, or library for shlib-derived syms
    	plt         map[Sym]int32       // stores dynimport for pe objects
    	got         map[Sym]int32       // stores got for pe objects
    	dynid       map[Sym]int32       // stores Dynid for symbol
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. pkg/apis/apps/v1/zz_generated.conversion.go

    		return err
    	}
    	out.MinReadySeconds = in.MinReadySeconds
    	out.RevisionHistoryLimit = (*int32)(unsafe.Pointer(in.RevisionHistoryLimit))
    	out.Paused = in.Paused
    	out.ProgressDeadlineSeconds = (*int32)(unsafe.Pointer(in.ProgressDeadlineSeconds))
    	return nil
    }
    
    // Convert_v1_DeploymentSpec_To_apps_DeploymentSpec is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 66.7K bytes
    - Viewed (0)
  9. pkg/apis/apps/v1beta2/zz_generated.conversion.go

    		return err
    	}
    	out.MinReadySeconds = in.MinReadySeconds
    	out.RevisionHistoryLimit = (*int32)(unsafe.Pointer(in.RevisionHistoryLimit))
    	out.Paused = in.Paused
    	out.ProgressDeadlineSeconds = (*int32)(unsafe.Pointer(in.ProgressDeadlineSeconds))
    	return nil
    }
    
    // Convert_v1beta2_DeploymentSpec_To_apps_DeploymentSpec is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 74.2K bytes
    - Viewed (0)
  10. pkg/apis/apps/v1beta1/zz_generated.conversion.go

    		return err
    	}
    	out.MinReadySeconds = in.MinReadySeconds
    	out.RevisionHistoryLimit = (*int32)(unsafe.Pointer(in.RevisionHistoryLimit))
    	out.Paused = in.Paused
    	out.RollbackTo = (*apps.RollbackConfig)(unsafe.Pointer(in.RollbackTo))
    	out.ProgressDeadlineSeconds = (*int32)(unsafe.Pointer(in.ProgressDeadlineSeconds))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 52.9K bytes
    - Viewed (0)
Back to top