Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 159 for parentuid (0.33 sec)

  1. src/os/removeall_at.go

    		if pathErr, ok := err.(*PathError); ok {
    			pathErr.Path = parentDir + string(PathSeparator) + pathErr.Path
    			err = pathErr
    		}
    		return err
    	}
    	return nil
    }
    
    func removeAllFrom(parent *File, base string) error {
    	parentFd := int(parent.Fd())
    	// Simple case: if Unlink (aka remove) works, we're done.
    	err := ignoringEINTR(func() error {
    		return unix.Unlinkat(parentFd, base, 0)
    	})
    	if err == nil || IsNotExist(err) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationFixture.groovy

                        }
    
                        ops.put(startedNotification.notificationOperationId, new BuildOpsEntry(id: startedNotification.notificationOperationId?.id,
                                parentId: startedNotification.notificationOperationParentId?.id,
                                detailsType: detailsType.name,
                                details: details,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 11:47:00 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  3. src/io/ioutil/example_test.go

    		log.Fatal(err)
    	}
    }
    
    func ExampleTempDir_suffix() {
    	parentDir := os.TempDir()
    	logsDir, err := ioutil.TempDir(parentDir, "*-logs")
    	if err != nil {
    		log.Fatal(err)
    	}
    	defer os.RemoveAll(logsDir) // clean up
    
    	// Logs can be cleaned out earlier if needed by searching
    	// for all directories whose suffix ends in *-logs.
    	globPattern := filepath.Join(parentDir, "*-logs")
    	matches, err := filepath.Glob(globPattern)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 22 23:03:58 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/ClassLoaderScopeRegistryListener.java

     *
     * @see ClassLoaderScopeRegistry
     * @see ClassLoaderScope
     */
    @EventScope(Scope.UserHome.class)
    public interface ClassLoaderScopeRegistryListener {
    
        void childScopeCreated(ClassLoaderScopeId parentId, ClassLoaderScopeId childId, @Nullable ClassLoaderScopeOrigin origin);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ClientBuildEventGenerator.java

                if (detailsType.isInstance(buildOperation.getDetails())) {
                    OperationIdentifier parentId = progressEventConsumer.findStartedParentId(buildOperation);
                    InternalOperationDescriptor descriptor = mapper.createDescriptor(buildOperation.getDetails(), buildOperation, parentId);
                    return new EnabledOperation(descriptor, mapper, progressEventConsumer);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildModelControllerServices.kt

            return BuildModelControllerServices.Supplier { registration, services ->
                registration.add(BuildDefinition::class.java, buildDefinition)
                registration.add(BuildState::class.java, owner)
                registration.addProvider(ServicesProvider(buildDefinition, parentBuild, services))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/operations/TestListenerBuildOperationAdapter.java

            OperationIdentifier parentId = parentOperation == null ? CurrentBuildOperationRef.instance().getId() : parentOperation.descriptor.getId();
            return BuildOperationDescriptor.displayName(testDescriptor.getDisplayName())
                .details(details)
                .build(newOperationIdentifier(), parentId);
        }
    
        private OperationIdentifier newOperationIdentifier() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestEventSerializer.java

                String name = decoder.readString();
                String displayName = decoder.readString();
                CompositeIdGenerator.CompositeId parentId = idSerializer.read(decoder);
                return new DefaultNestedTestSuiteDescriptor(id, name, displayName, parentId);
            }
    
            @Override
            public void write(Encoder encoder, DefaultNestedTestSuiteDescriptor value) throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/OutputsCleaner.java

                }
            }
        }
    
        private boolean existsAndIsEmpty(File parentDir) throws IOException {
            if (!parentDir.exists()) {
                return false;
            }
            try (DirectoryStream<Path> directory = Files.newDirectoryStream(parentDir.toPath())) {
                return !directory.iterator().hasNext();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/TestStartEventTest.groovy

            TestStartEvent event = new TestStartEvent(200L)
    
            expect:
            def newEvent = event.withParentId('parent')
            newEvent != event
            newEvent.startTime == 200L
            newEvent.parentId == 'parent'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top