Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for not_gt (0.09 sec)

  1. src/cmd/go/testdata/script/test_badtest.txt

    stdout ^FAIL\tbadtest/badexec
    
    ! go test badtest/badsyntax
    ! stdout ^ok
    stdout ^FAIL\tbadtest/badsyntax
    
    ! go test badtest/badvar
    ! stdout ^ok
    stdout ^FAIL\tbadtest/badvar
    
    ! go test notest
    ! stdout ^ok
    stderr '^notest.hello.go:6:1: syntax error: non-declaration statement outside function body' # Exercise issue #7108
    
    -- badtest/badexec/x_test.go --
    package badexec
    
    func init() {
    	panic("badexec")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 06 15:47:54 UTC 2020
    - 805 bytes
    - Viewed (0)
  2. pkg/volume/emptydir/empty_dir_linux.go

    		if err != nil {
    			return v1.StorageMediumHugePages, !notMnt, nil, err
    		}
    		return v1.StorageMediumHugePages, !notMnt, pageSize, nil
    	}
    	return v1.StorageMediumDefault, !notMnt, nil, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/context/DaemonCompatibilitySpecSpec.groovy

            clientWants(args.requestedJvm,
                args.daemonOpts ?: [],
                args.applyInstrumentationAgent ?: false,
                args.nativeServicesMode ?: NativeServices.NativeServicesMode.NOT_SET,
                args.priority?:DaemonParameters.Priority.NORMAL)
        }
    
        DaemonRequestContext clientWants(JavaInfo requestedJvm,
                                         Collection<String> daemonOpts = Collections.emptyList(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_latest_pseudo.txt

    # Check that we can build a module with no tagged versions by querying
    # "@latest" through a proxy.
    # Verifies golang.org/issue/32636
    
    env GO111MODULE=on
    
    go mod init m
    go get example.com/notags
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 275 bytes
    - Viewed (0)
  5. pkg/volume/flexvolume/util.go

    	notMnt, err := mounter.IsLikelyNotMountPoint(deviceMountPath)
    	if err != nil {
    		if os.IsNotExist(err) {
    			if err := os.MkdirAll(deviceMountPath, 0750); err != nil {
    				return false, err
    			}
    			notMnt = true
    		} else {
    			return false, err
    		}
    	}
    
    	return !notMnt, nil
    }
    
    // Mounts the device at the given path.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 14 13:58:56 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  6. pkg/volume/flexvolume/detacher.go

    		return fmt.Errorf("error checking path: %w", pathErr)
    	}
    
    	notmnt, err := isNotMounted(d.plugin.host.GetMounter(d.plugin.GetPluginName()), deviceMountPath)
    	if err != nil {
    		if mount.IsCorruptedMnt(err) {
    			notmnt = false // Corrupted error is assumed to be mounted.
    		} else {
    			return err
    		}
    	}
    
    	if notmnt {
    		klog.Warningf("Warning: Path: %v already unmounted", deviceMountPath)
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 14 13:58:56 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time_fuzz.go

    //go:build !notest
    // +build !notest
    
    /*
    Copyright 2020 The Kubernetes Authors.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  8. src/runtime/mkduff.go

    	"log"
    	"os"
    )
    
    func main() {
    	gen("amd64", notags, zeroAMD64, copyAMD64)
    	gen("386", notags, zero386, copy386)
    	gen("arm", notags, zeroARM, copyARM)
    	gen("arm64", notags, zeroARM64, copyARM64)
    	gen("loong64", notags, zeroLOONG64, copyLOONG64)
    	gen("ppc64x", tagsPPC64x, zeroPPC64x, copyPPC64x)
    	gen("mips64x", tagsMIPS64x, zeroMIPS64x, copyMIPS64x)
    	gen("riscv64", notags, zeroRISCV64, copyRISCV64)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:21 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/intstr/instr_fuzz.go

    //go:build !notest
    // +build !notest
    
    /*
    Copyright 2020 The Kubernetes Authors.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1K bytes
    - Viewed (0)
  10. pkg/volume/nfs/nfs.go

    }
    
    func (nfsMounter *nfsMounter) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	notMnt, err := mount.IsNotMountPoint(nfsMounter.mounter, dir)
    	klog.V(4).Infof("NFS mount set up: %s %v %v", dir, !notMnt, err)
    	if err != nil && !os.IsNotExist(err) {
    		return err
    	}
    	if !notMnt {
    		return nil
    	}
    	if err := os.MkdirAll(dir, 0750); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top