Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 797 for aborted (0.26 sec)

  1. test/fixedbugs/issue24693.dir/b.go

    // a.T.m instead of b.T.m.
    func F1(i interface{ m() }) { i.m() }
    
    // The interface method calling convention depends on interface method
    // sets being sorted in the same order across compilation units.  In
    // the test case below, at the call to b.F2(b.T{}) in c.go, the
    // interface method set is sorted as { a.m(); b.m() }.
    //
    // However, while compiling package b, its package path is set to "",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 10 00:06:06 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectSegment.java

     * Read for instance http://docs.codehaus.org/display/MAVEN/Deterministic+Lifecycle+Planning
     * </p>
     * <p>
     * In their current implementation they are "bolted" onto the lifecycle by separating them
     * into TaskSegments. This class represents the execution context of one such task segment.
     * </p>
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. misc/ios/go_ios_exec.go

    }
    
    func installSimulator(appdir string) error {
    	cmd := exec.Command(
    		"xcrun", "simctl", "install",
    		"booted", // Install to the booted simulator.
    		appdir,
    	)
    	if out, err := cmd.CombinedOutput(); err != nil {
    		os.Stderr.Write(out)
    		return fmt.Errorf("xcrun simctl install booted %q: %v", appdir, err)
    	}
    	return nil
    }
    
    func uninstallDevice(bundleID string) error {
    	cmd := idevCmd(exec.Command(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/utils/InstrumentationClasspathMerger.java

                // We sort based on the original classpath to we keep the original order,
                // we also rely on the fact that for ordered streams `sorted()` method has stable sort.
                .sorted((first, second) -> ordering.compare(first.originalIdentifier, second.originalIdentifier))
                .map(artifact -> artifact.file)
                .collect(Collectors.toList());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 19:11:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/BooleanOptionElement.java

        /**
         * Returns a comparator that groups opposite option pairs together.
         *
         * <p>Options are sorted in the natural order of their names,
         * except for disable options which are sorted after their opposite option.
         * For example, {@code "--foo"} and {@code "--no-foo"} are grouped together
         * and are sorted after {@code "--bar"} and {@code "--no-bar"}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 18 06:43:54 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. pkg/controller/history/controller_history_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    		}
    		adopted, err := history.ReleaseControllerRevision(test.parent, test.revision)
    		if !test.err {
    			if err != nil {
    				t.Errorf("%s: %s", test.name, err)
    			}
    			if adopted == nil {
    				return
    			}
    			if metav1.IsControlledBy(adopted, test.parent) {
    				t.Errorf("%s: release failed", test.name)
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/AbstractSortedSetMultimap.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Basic implementation of the {@link SortedSetMultimap} interface. It's a wrapper around {@link
     * AbstractMapBasedMultimap} that converts the returned collections into sorted sets. The {@link
     * #createCollection} method must return a {@code SortedSet}.
     *
     * @author Jared Levy
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  8. src/go/doc/testdata/d.2.golden

    	const C0 = 0
    
    	// C1 should be second. 
    	const C1 = 1
    
    	// C2 should be third. 
    	const C2 = 2
    
    	// 
    	const (
    		// Single const declarations inside ()'s are considered ungrouped
    		// and show up in sorted order.
    		Cungrouped = 0
    	)
    
    
    VARIABLES
    	// VBx variables should appear before VAx variables. 
    	var (
    		VB2	int	// before VB1
    		VB1	int	// before VB0
    		VB0	int	// at end
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

     *  Reports failure with no other action.
     */
    #define CU_ASSERT(value) \
      { CU_assertImplementation((value), __LINE__, #value, __FILE__, "", CU_FALSE); }
    
    /** Simple assertion.
     *  Reports failure and causes test to abort.
     */
    #define CU_ASSERT_FATAL(value) \
      { CU_assertImplementation((value), __LINE__, #value, __FILE__, "", CU_TRUE); }
    
    /** Simple assertion.
     *  Reports failure with no other action.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/maturity/maturity.go

    	// this annotation is added automatically.
    	annotation.IoIstioRev.Name: true,
    
    	// TODO below are ambient related annotations that are not yet known to be stable.
    	// They are added automatically, and should not be alerted on.
    	// Delete these related annotations once they are stable.
    	// Ref: https://github.com/istio/api/pull/2695
    	constants.AmbientWaypointForTrafficTypeLabel: true,
    	constants.AmbientRedirection:                 true,
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top