Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 141 for Armode (0.13 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ArchivesContinuousIntegrationTest.groovy

            def outputDir = file("unpack")
            def sourceFile = file(source)
    
            def permissions = readonly
                ? """
                    fileMode 0644
                    dirMode 0755
                  """
                : ""
    
            buildFile << """
                task unpack(type: Sync) {
                    from($type("${sourceFile.toURI()}"))
                    into("unpack")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. pkg/registry/core/service/strategy.go

    			newSvc.Status.LoadBalancer.Ingress[i].IPMode = nil
    		}
    	}
    }
    
    // returns true when the LoadBalancer Ingress IPMode fields are in use.
    func loadbalancerIPModeInUse(svc *api.Service) bool {
    	if svc == nil {
    		return false
    	}
    	for _, ing := range svc.Status.LoadBalancer.Ingress {
    		if ing.IPMode != nil {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPacker.java

                        assertCorrectType(isRoot, snapshot);
                        File dir = new File(snapshot.getAbsolutePath());
                        int dirMode = isRoot ? UnixPermissions.DEFAULT_DIR_PERM : filePermissionAccess.getUnixMode(dir);
                        storeDirectoryEntry(targetPath, dirMode, tarOutput);
                    }
    
                    @Override
                    public void visitRegularFile(RegularFileSnapshot fileSnapshot) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. tests/integration/pilot/gateway_conformance_test.go

    				}
    			} else {
    				opts.NamespaceLabels = map[string]string{
    					"istio-injection": "enabled",
    				}
    			}
    			ctx.Cleanup(func() {
    				if !ctx.Failed() {
    					return
    				}
    				if ctx.Settings().CIMode {
    					for _, ns := range conformanceNamespaces {
    						namespace.Dump(ctx, ns)
    					}
    				}
    			})
    
    			csuite, err := suite.NewConformanceTestSuite(opts)
    			assert.NoError(t, err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 15:22:47 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/internal/pkgbits/decoder.go

    	var ridx Index
    	var name string
    	var rcode int
    	{
    		r := pr.TempDecoder(RelocName, idx, SyncObject1)
    		r.Sync(SyncSym)
    		r.Sync(SyncPkg)
    		ridx = r.Reloc(RelocPkg)
    		name = r.String()
    		rcode = r.Code(SyncCodeObj)
    		pr.RetireDecoder(&r)
    	}
    
    	path := pr.PeekPkgPath(ridx)
    	assert(name != "")
    
    	tag := CodeObj(rcode)
    
    	return path, name, tag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 20:58:46 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    type instArgs [4]instArg
    
    var (
    	errMode    = fmt.Errorf("unsupported execution mode")
    	errShort   = fmt.Errorf("truncated instruction")
    	errUnknown = fmt.Errorf("unknown instruction")
    )
    
    var decoderCover []bool
    
    // Decode decodes the leading bytes in src as a single instruction.
    func Decode(src []byte, mode Mode) (inst Inst, err error) {
    	if mode != ModeARM {
    		return Inst{}, errMode
    	}
    	if len(src) < 4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  7. pkg/test/framework/resource/flags.go

    		"Do not cleanup resources after test completion")
    
    	flag.BoolVar(&settingsFromCommandLine.CIMode, "istio.test.ci", settingsFromCommandLine.CIMode,
    		"Enable CI Mode. Additional logging and state dumping will be enabled.")
    
    	flag.StringVar(&settingsFromCommandLine.SelectorString, "istio.test.select", settingsFromCommandLine.SelectorString,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyPermissionsIntegrationTest.groovy

            testSourceFile.mode = mode
            and:
            buildFile << """
            task copy(type: Copy) {
                from "${testSourceFile.absolutePath}"
                into ("build/tmp")
            }
            """
    
            when:
            run "copy"
            then:
            file("build/tmp/${testFileName}").mode == mode
    
            where:
            mode | testFileName
            0746 | "reference.txt"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_freebsd_386.go

    	SYS_CPUSET_SETAFFINITY       = 488 // { int cpuset_setaffinity(cpulevel_t level, \
    	SYS_FACCESSAT                = 489 // { int faccessat(int fd, char *path, int amode, \
    	SYS_FCHMODAT                 = 490 // { int fchmodat(int fd, char *path, mode_t mode, \
    	SYS_FCHOWNAT                 = 491 // { int fchownat(int fd, char *path, uid_t uid, \
    	SYS_FEXECVE                  = 492 // { int fexecve(int fd, char **argv, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  10. src/internal/coverage/encodemeta/encodefile.go

    		Version:      coverage.MetaFileVersion,
    		TotalLength:  tlen,
    		Entries:      uint64(len(blobs)),
    		MetaFileHash: finalHash,
    		StrTabOffset: uint32(stOffset),
    		StrTabLength: stSize,
    		CMode:        mode,
    		CGranularity: granularity,
    	}
    	var err error
    	if err = binary.Write(m.w, binary.LittleEndian, mh); err != nil {
    		return fmt.Errorf("error writing %s: %v", m.mfname, err)
    	}
    
    	if m.debug {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:40:42 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top