Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 57 for not_gt (0.11 sec)

  1. internal/bucket/lifecycle/filter_test.go

    		},
    		andSet: true,
    	}
    
    	tests := []struct {
    		filter   Filter
    		userTags string
    		want     bool
    	}{
    		{
    			filter:   noTags,
    			userTags: "",
    			want:     true,
    		},
    		{
    			filter:   noTags,
    			userTags: "A=3",
    			want:     true,
    		},
    		{
    			filter:   oneTag,
    			userTags: "A=3",
    			want:     false,
    		},
    		{
    			filter:   oneTag,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 27 00:01:20 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/regexp/testdata/testregex.c

    #ifndef REG_MINIMAL
    #define REG_MINIMAL	NOTEST
    #endif
    #ifndef REG_MULTIPLE
    #define REG_MULTIPLE	NOTEST
    #endif
    #ifndef REG_MULTIREF
    #define REG_MULTIREF	NOTEST
    #endif
    #ifndef REG_MUSTDELIM
    #define REG_MUSTDELIM	NOTEST
    #endif
    #ifndef REG_NEWLINE
    #define REG_NEWLINE	NOTEST
    #endif
    #ifndef REG_NOTBOL
    #define REG_NOTBOL	NOTEST
    #endif
    #ifndef REG_NOTEOL
    #define REG_NOTEOL	NOTEST
    #endif
    #ifndef REG_NULL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  3. pkg/volume/iscsi/attacher.go

    	mounter := attacher.host.GetMounter(iscsiPluginName)
    	notMnt, err := mounter.IsLikelyNotMountPoint(deviceMountPath)
    	if err != nil {
    		if os.IsNotExist(err) {
    			if err := os.MkdirAll(deviceMountPath, 0750); err != nil {
    				return err
    			}
    			notMnt = true
    		} else {
    			return err
    		}
    	}
    	readOnly, fsType, err := getISCSIVolumeInfo(spec)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:31 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/cover_cgo_extra_file.txt

    # extra empty non-cgo file in the package being checked.
    
    go test -short -cover cgocover4
    stdout  'coverage:.*[1-9][0-9.]+%'
    ! stderr '[^0-9]0\.0%'
    
    -- go.mod --
    module cgocover4
    
    go 1.16
    -- notcgo.go --
    package p
    -- p.go --
    package p
    
    /*
    void
    f(void)
    {
    }
    */
    import "C"
    
    var b bool
    
    func F() {
    	if b {
    		for {
    		}
    	}
    	C.f()
    }
    -- x_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 560 bytes
    - Viewed (0)
  5. pkg/volume/iscsi/disk_manager.go

    	notMnt, err := mounter.IsLikelyNotMountPoint(volPath)
    	if err != nil && !os.IsNotExist(err) {
    		klog.Errorf("cannot validate mountpoint: %s", volPath)
    		return err
    	}
    	if !notMnt {
    		return nil
    	}
    
    	if err := os.MkdirAll(volPath, 0750); err != nil {
    		klog.Errorf("failed to mkdir:%s", volPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. Jenkinsfile.s390x

                              checkout([$class: 'GitSCM',
                                      branches: [[name: ITS_BRANCH]],
                                      extensions: [[$class: 'CloneOption', depth: 1, noTags: true, shallow: true]],
                                      userRemoteConfigs: [[url: 'https://github.com/apache/maven-integration-testing.git']]])
                            } catch (Throwable e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. Jenkinsfile

                                      checkout([$class: 'GitSCM',
                                              branches: [[name: ITS_BRANCH]],
                                              extensions: [[$class: 'CloneOption', depth: 1, noTags: true, shallow: true]],
                                              userRemoteConfigs: [[url: 'https://github.com/apache/maven-integration-testing.git']]])
                                    } catch (Throwable e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientFactory.java

            return createBuildClientServices(clientLoggingServices, daemonParameters, new DaemonRequestContext(Jvm.current(), null, Collections.emptyList(), false, NativeServices.NativeServicesMode.NOT_SET, DaemonParameters.Priority.NORMAL), new ByteArrayInputStream(new byte[0]));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/JavaSystemPropertiesProxySettingsTest.groovy

            expect:
            settings("proxyHost", prop).getProxy().port == value
    
            where:
            prop     | value
            null     | 80
            ""       | 80
            "notInt" | 80
            "0"      | 0
            "111"    | 111
        }
    
        def "uses specified proxy user and password"() {
            expect:
            def proxy = new TestSystemProperties("proxyHost", null, user, password).getProxy()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/BuildActionsFactoryTest.groovy

            def request = new DaemonRequestContext(null, new DaemonJvmCriteria(JavaLanguageVersion.current(), null, null), daemonOpts, false, NativeServices.NativeServicesMode.NOT_SET, DaemonParameters.Priority.NORMAL)
            request
        }
    
        def convert(String... args) {
            def parser = new CommandLineParser()
            factory.configureCommandLineParser(parser)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top