Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 75 for noscan (0.12 sec)

  1. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/tasks/InstallXCTestBundle.java

                        "--copy",
                        "--scan-executable", bundleFile.getAbsolutePath(),
                        "--destination", new File(bundleDir, "Contents/Frameworks").getAbsolutePath(),
                        "--platform", "macosx",
                        "--resource-destination", new File(bundleDir, "Contents/Resources").getAbsolutePath(),
                        "--scan-folder", new File(bundleDir, "Contents/Frameworks").getAbsolutePath()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/results/TestListenerInternal.java

    import org.gradle.api.internal.tasks.testing.TestStartEvent;
    import org.gradle.api.tasks.testing.TestOutputEvent;
    import org.gradle.api.tasks.testing.TestResult;
    import org.gradle.internal.scan.UsedByScanPlugin;
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    @UsedByScanPlugin
    @EventScope(Scope.Build.class)
    public interface TestListenerInternal {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationListener.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.operations.notify;
    
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    /**
     * A listener to notifications about build events.
     *
     * Implementations are thread safe and can be signalled concurrently.
     * However, a finished signal must not be emitted before the signal of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/jvm/java-compiler-plugin/src/main/java/org/gradle/internal/compiler/java/listeners/constants/ConstantsCollector.java

                ConstantsTreeVisitor visitor = new ConstantsTreeVisitor(task.getElements(), trees, constantDependentsConsumer);
                TreePath path = trees.getPath(e.getCompilationUnit(), e.getCompilationUnit());
                visitor.scan(path, null);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/descriptor/RepositoryDescriptor.java

    package org.gradle.api.internal.artifacts.repositories.descriptor;
    
    import com.google.common.collect.ImmutableSortedMap;
    import org.gradle.api.internal.artifacts.repositories.ResolutionAwareRepository;
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    import java.util.Map;
    
    /**
     * A non-functional, immutable, description of a {@link ResolutionAwareRepository} at a point in time.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. internal/config/heal/help.go

    		return config.DefaultHelpPostfix(DefaultKVS, key)
    	}
    
    	// Help provides help for config values
    	Help = config.HelpKVS{
    		config.HelpKV{
    			Key:         Bitrot,
    			Description: `perform bitrot scan on drives when checking objects during scanner` + defaultHelpPostfix(Bitrot),
    			Optional:    true,
    			Type:        "on|off",
    		},
    		config.HelpKV{
    			Key:         Sleep,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/JarFilePackageLister.java

                        }
                    }
                } finally {
                    zipFile.close();
                }
            } catch (IOException e) {
                throw new GradleException("failed to scan jar file for packages (" + jarFileAbsolutePath + ")", e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/test/groovy/org/gradle/internal/scan/config/LegacyGradleEnterprisePluginCheckInServiceTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.scan.config
    
    import org.gradle.api.internal.BuildType
    import org.gradle.api.internal.GradleInternal
    import org.gradle.api.internal.StartParameterInternal
    import org.gradle.internal.buildtree.BuildModelParameters
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/stringer.go

    		log.Fatal(err)
    	}
    	fd, err := os.Create(*output)
    	if err != nil {
    		log.Fatal(err)
    	}
    	out := bufio.NewWriter(fd)
    	defer out.Flush()
    	var on = false
    	s := bufio.NewScanner(in)
    	first := true
    	for s.Scan() {
    		line := s.Text()
    		if !on {
    			// First relevant line contains "= obj.ABase".
    			// If we find it, delete the = so we don't stop immediately.
    			const prefix = "= obj.ABase"
    			index := strings.Index(line, prefix)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. tests/embedded_struct_test.go

    	b, err := json.Marshal(c)
    	return string(b[:]), err
    }
    
    func (c *Content) Scan(src interface{}) error {
    	var value Content
    	str, ok := src.(string)
    	if !ok {
    		byt, ok := src.([]byte)
    		if !ok {
    			return errors.New("Embedded.Scan byte assertion failed")
    		}
    		if err := json.Unmarshal(byt, &value); err != nil {
    			return err
    		}
    	} else {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top