Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 80 for vflag (0.06 sec)

  1. cmd/kubeadm/app/apis/kubeadm/types.go

    }
    
    const (
    	// UnmountFlagMNTForce represents the flag "MNT_FORCE"
    	UnmountFlagMNTForce = "MNT_FORCE"
    	// UnmountFlagMNTDetach represents the flag "MNT_DETACH"
    	UnmountFlagMNTDetach = "MNT_DETACH"
    	// UnmountFlagMNTExpire represents the flag "MNT_EXPIRE"
    	UnmountFlagMNTExpire = "MNT_EXPIRE"
    	// UnmountFlagUmountNoFollow represents the flag "UMOUNT_NOFOLLOW"
    	UnmountFlagUmountNoFollow = "UMOUNT_NOFOLLOW"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            when:
            fails("compileJava")
    
            then:
            verifyAll(receivedProblem) {
                severity == Severity.ERROR
                fqid == 'compilation:java:initialization-failed'
                details.endsWith('invalid flag: -invalid-flag')
                exception.message.endsWith('invalid flag: -invalid-flag')
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho.go

    	} else {
    		msect.off = 0
    		msect.flag |= S_ZEROFILL
    	}
    
    	if sect.Rwx&1 != 0 {
    		msect.flag |= S_ATTR_SOME_INSTRUCTIONS
    	}
    
    	if sect.Name == ".text" {
    		msect.flag |= S_ATTR_PURE_INSTRUCTIONS
    	}
    
    	if sect.Name == ".plt" {
    		msect.name = "__symbol_stub1"
    		msect.flag = S_ATTR_PURE_INSTRUCTIONS | S_ATTR_SOME_INSTRUCTIONS | S_SYMBOL_STUBS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/objfile.go

    		abi = goobj.SymABIstatic
    	}
    	flag := uint8(0)
    	if s.DuplicateOK() {
    		flag |= goobj.SymFlagDupok
    	}
    	if s.Local() {
    		flag |= goobj.SymFlagLocal
    	}
    	if s.MakeTypelink() {
    		flag |= goobj.SymFlagTypelink
    	}
    	if s.Leaf() {
    		flag |= goobj.SymFlagLeaf
    	}
    	if s.NoSplit() {
    		flag |= goobj.SymFlagNoSplit
    	}
    	if s.ReflectMethod() {
    		flag |= goobj.SymFlagReflectMethod
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. src/testing/benchmark.go

    package testing
    
    import (
    	"flag"
    	"fmt"
    	"internal/sysinfo"
    	"io"
    	"math"
    	"os"
    	"runtime"
    	"slices"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    	"unicode"
    )
    
    func initBenchmarkFlags() {
    	matchBenchmarks = flag.String("test.bench", "", "run only benchmarks matching `regexp`")
    	benchmarkMemory = flag.Bool("test.benchmem", false, "print memory allocations for 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)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileCompatibilityIntegrationTest.groovy

            then:
            executedAndNotSkipped(":compileJava")
            classJavaVersion(javaClassFile("Parent.class")) == JavaVersion.VERSION_17
        }
    
        def "release flag lower than compiler version does not allow accessing newer Java language features"() {
            def jdk = AvailableJavaHomes.getJdk(JavaVersion.VERSION_17)
    
            buildFile << """
                apply plugin: "java"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/upgrade/node.go

    	}, nil
    }
    
    // DryRun returns the dryRun flag.
    func (d *nodeData) DryRun() bool {
    	return d.dryRun
    }
    
    // EtcdUpgrade returns the etcdUpgrade flag.
    func (d *nodeData) EtcdUpgrade() bool {
    	return d.etcdUpgrade
    }
    
    // RenewCerts returns the renewCerts flag.
    func (d *nodeData) RenewCerts() bool {
    	return d.renewCerts
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. src/go/build/deps_test.go

    	< testing/iotest
    	< testing/fstest;
    
    	FMT, flag, math/rand
    	< testing/quick;
    
    	FMT, DEBUG, flag, runtime/trace, internal/sysinfo, math/rand
    	< testing;
    
    	log/slog, testing
    	< testing/slogtest;
    
    	FMT, crypto/sha256, encoding/json, go/ast, go/parser, go/token,
    	internal/godebug, math/rand, encoding/hex, crypto/sha256
    	< internal/fuzz;
    
    	OS, flag, testing, internal/cfg, internal/platform, internal/goroot
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/NativeServicesIntegrationTest.groovy

            "initialized"     | []                                  | true
        }
    
        @ToBeImplemented("https://github.com/gradle/gradle/issues/28203")
        def "native services flag should be passed to the daemon and to the worker"() {
            given:
            executer.withArguments(systemProperties.collect { it.toString() })
            buildScript("""
                import org.gradle.workers.WorkParameters
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/os/file_unix.go

    // openFileNolog is the Unix implementation of OpenFile.
    // Changes here should be reflected in openDirAt and openDirNolog, if relevant.
    func openFileNolog(name string, flag int, perm FileMode) (*File, error) {
    	setSticky := false
    	if !supportsCreateWithStickyBit && flag&O_CREATE != 0 && perm&ModeSticky != 0 {
    		if _, err := Stat(name); IsNotExist(err) {
    			setSticky = true
    		}
    	}
    
    	var (
    		r int
    		s poll.SysFile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top