Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,092 for EXISTS (0.1 sec)

  1. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginVersionIntegrationTest.groovy

            succeeds 'checkstyleMain'
    
            then:
            file("build/reports/checkstyle/main.sarif").exists()
            !file("build/reports/checkstyle/main.xml").exists()
            !file("build/tmp/checkstyleMain/main.xml").exists()
            !file("build/reports/checkstyle/main.html").exists()
            !file("build/tmp/checkstyleMain/main.html").exists()
        }
    
        def "fails when SARIF enabled on unsupported checkstyle versions"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/pod_devices.go

    	pdev.RLock()
    	defer pdev.RUnlock()
    	containers, exists := pdev.devs[podUID]
    	if !exists {
    		return
    	}
    	resources, exists := containers[contName]
    	if !exists {
    		return
    	}
    	for resource, devices := range resources {
    		allocatedResources[resource] = allocatedResources[resource].Union(devices.deviceIds.Devices())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. pkg/volume/util/volumepathhandler/volume_path_handler.go

    	// RemovePath removes a file or directory on specified map path
    	RemoveMapPath(mapPath string) error
    	// IsSymlinkExist returns true if specified symbolic link exists
    	IsSymlinkExist(mapPath string) (bool, error)
    	// IsDeviceBindMountExist returns true if specified bind mount exists
    	IsDeviceBindMountExist(mapPath string) (bool, error)
    	// GetDeviceBindMountRefs searches bind mounts under global map path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/cache/desired_state_of_world_test.go

    	if len(volumesToAttach) != 0 {
    		t.Fatalf("len(volumesToAttach) Expected: <0> Actual: <%v>", len(volumesToAttach))
    	}
    }
    
    // Calls AddNode() once.
    // Verifies node exists.
    // Calls AddNode() again with the same node.
    // Verifies node exists, and zero volumes to attach.
    func Test_AddNode_Positive_ExistingNode(t *testing.T) {
    	// Arrange
    	volumePluginMgr, _ := volumetesting.GetTestVolumePluginMgr(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/IsolatingIncrementalAnnotationProcessingIntegrationTest.groovy

            file("build/generated/sources/annotationProcessor/java/main/AHelper.java").exists()
            file("build/generated/sources/annotationProcessor/java/main/AHelperResource.txt").exists()
    
            when:
            a.delete()
            run "compileJava"
    
            then:
            !file("build/generated/sources/annotationProcessor/java/main/AHelper.java").exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

            given:
            buildFile << """
    application.executableDir = ''
    """
            when:
            run "installDist"
    
            then:
            file('build/install/sample/sample').exists()
            file('build/install/sample/sample.bat').exists()
    
            when:
            runViaStartScript(file('build/install/sample'))
    
            then:
            outputContains("Hello World")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/KerberosTest.java

                  SmbSessionInternal session = (SmbSessionInternal) th.getSession() ) {
                Assume.assumeTrue("Not SMB2", th.isSMB2());
                f.exists();
                session.reauthenticate();
                f.exists();
            }
        }
    
    
        @Test
        public void testSessionExpiration () throws Exception {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 01 09:46:04 UTC 2020
    - 11.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/apiclient/idempotency_test.go

    					return true, nil, errors.New("unknown error")
    				})
    			},
    			expectedError: true,
    		},
    		{
    			name: "configmap exists, update it",
    			setupClient: func(client *clientsetfake.Clientset) {
    				client.PrependReactor("create", "configmaps", func(clientgotesting.Action) (bool, runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/pod_container_manager_linux.go

    var _ PodContainerManager = &podContainerManagerImpl{}
    
    // Exists checks if the pod's cgroup already exists
    func (m *podContainerManagerImpl) Exists(pod *v1.Pod) bool {
    	podContainerName, _ := m.GetPodContainerName(pod)
    	return m.cgroupManager.Exists(podContainerName)
    }
    
    // EnsureExists takes a pod as argument and makes sure that
    // pod cgroup exists if qos cgroup hierarchy flag is enabled.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:38:36 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/ValidationActions.java

                validateNotInReservedFileSystemLocation(propertyName, context, file);
                if (file.exists()) {
                    if (file.isDirectory()) {
                        reportCannotWriteFileToDirectory(propertyName, context, file);
                    }
                    // else, assume we can write to anything that exists and is not a directory
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top