Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for Iflag (0.16 sec)

  1. pkg/kubelet/kubelet_pods.go

    }
    
    // makeHostsMount makes the mountpoint for the hosts file that the containers
    // in a pod are injected with. podIPs is provided instead of podIP as podIPs
    // are present even if dual-stack feature flag is not enabled.
    func makeHostsMount(podDir string, podIPs []string, hostName, hostDomainName string, hostAliases []v1.HostAlias, useHostNetwork bool) (*kubecontainer.Mount, error) {
    	hostsFilePath := getEtcHostsPath(podDir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "gmsaCredentialSpecName": {
              "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use. This field is alpha-level and is only honored by servers that enable the WindowsGMSA feature flag.",
              "type": "string"
            },
            "runAsUserName": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    		return []byte{}, err
    	}
    
    	return finalConfigData, nil
    }
    
    func ilmExpiryReplicationEnabled(sites map[string]madmin.PeerInfo) bool {
    	flag := true
    	for _, pi := range sites {
    		flag = flag && pi.ReplicateILMExpiry
    	}
    	return flag
    }
    
    type siteReplicatorCred struct {
    	Creds auth.Credentials
    	sync.RWMutex
    }
    
    // Get or attempt to load site replicator credentials from disk.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

            "parameters": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    	 * around jmps to fix. this is rare.
    	 */
    	for bflag != 0 {
    		bflag = 0
    		pc = 0
    		for p = c.cursym.Func().Text.Link; p != nil; p = p.Link {
    			p.Pc = pc
    			o = c.oplook(p)
    
    			/* very large branches */
    			if (o.flag&BRANCH14BITS != 0 || o.flag&BRANCH19BITS != 0) && p.To.Target() != nil {
    				otxt := p.To.Target().Pc - pc
    				var toofar bool
    				if o.flag&BRANCH14BITS != 0 { // branch instruction encodes 14 bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  6. src/reflect/value.go

    	flagKindMask    flag = 1<<flagKindWidth - 1
    	flagStickyRO    flag = 1 << 5
    	flagEmbedRO     flag = 1 << 6
    	flagIndir       flag = 1 << 7
    	flagAddr        flag = 1 << 8
    	flagMethod      flag = 1 << 9
    	flagMethodShift      = 10
    	flagRO          flag = flagStickyRO | flagEmbedRO
    )
    
    func (f flag) kind() Kind {
    	return Kind(f & flagKindMask)
    }
    
    func (f flag) ro() flag {
    	if f&flagRO != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/debug/elf/elf.go

    	{0x7fffffff, "PT_HIPROC"},
    }
    
    func (i ProgType) String() string   { return stringName(uint32(i), ptStrings, false) }
    func (i ProgType) GoString() string { return stringName(uint32(i), ptStrings, true) }
    
    // Prog.Flag
    type ProgFlag uint32
    
    const (
    	PF_X        ProgFlag = 0x1        /* Executable. */
    	PF_W        ProgFlag = 0x2        /* Writable. */
    	PF_R        ProgFlag = 0x4        /* Readable. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            public void applyConventionMappingToProperty(PropertyMetadata property) {
                if (!conventionAware) {
                    return;
                }
    
                // GENERATE private boolean <flag-name>;
                addField(ACC_PRIVATE | ACC_TRANSIENT, propFieldName(property), BOOLEAN_TYPE);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cel
    
    import (
    	"bytes"
    	"context"
    	"flag"
    	"fmt"
    	"math"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    
    	"k8s.io/klog/v2"
    	"k8s.io/kube-openapi/pkg/validation/strfmt"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods_test.go

    			if !reflect.DeepEqual(podIPs, tc.expectedIPs) {
    				t.Fatalf("Expected PodIPs %#v, got %#v", tc.expectedIPs, podIPs)
    			}
    		})
    	}
    }
    
    // func init() {
    // 	klog.InitFlags(flag.CommandLine)
    // 	flag.CommandLine.Lookup("v").Value.Set("5")
    // }
    
    func TestConvertToAPIContainerStatusesDataRace(t *testing.T) {
    	pod := podWithUIDNameNs("12345", "test-pod", "test-namespace")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top