Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 649 for Marks (0.35 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/FilteringClassLoader.java

            }
    
            /**
             * Marks a single class as visible.
             *
             * @param clazz the class
             */
            public void allowClass(Class<?> clazz) {
                classNames.add(clazz.getName());
            }
    
            /**
             * Marks a single class as not visible.
             *
             * @param className the class name
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/DaemonRegistryUpdaterTest.groovy

            updater.onCompleteActivity()
    
            then:
            noExceptionThrown()
        }
    
        def "marks busy"() {
            given:
            updater.onStart(address)
    
            when:
            updater.onStartActivity()
    
            then:
            1 * registry.markState(address, Busy)
        }
    
        def "marks canceled"() {
            given:
            updater.onStart(address)
    
            when:
            updater.onCancel()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. test/codegen/issue31618.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package codegen
    
    // Make sure we remove both inline marks in the following code.
    // Both +5 and +6 should map to real instructions, which can
    // be used as inline marks instead of explicit nops.
    func f(x int) int {
    	// amd64:-"XCHGL"
    	x = g(x) + 5
    	// amd64:-"XCHGL"
    	x = g(x) + 6
    	return x
    }
    
    func g(x int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 17:39:11 UTC 2019
    - 504 bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift4XCTest.groovy

                                Multi-line strings also let you write "quote marks"
                                freely inside your strings, which is great!
                                """
                            XCTAssertNotNil(longMessage.range(of: """
                                    Multi-line strings also let you write "quote marks"
                                    freely inside your strings, which is great!
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/go/doc/testdata/testing.0.golden

    	func (c *B) Error(args ...any)
    
    	// Errorf is equivalent to Logf() followed by Fail(). 
    	func (c *B) Errorf(format string, args ...any)
    
    	// Fail marks the function as having failed but continues ...
    	func (c *B) Fail()
    
    	// FailNow marks the function as having failed and stops its ...
    	func (c *B) FailNow()
    
    	// Failed reports whether the function has failed. 
    	func (c *B) Failed() bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  6. pkg/volume/util/resize_util.go

    	return updatedPVC, err
    }
    
    // MarkResizeFinished marks all resizing as done
    func MarkResizeFinished(
    	pvc *v1.PersistentVolumeClaim,
    	newSize resource.Quantity,
    	kubeClient clientset.Interface) (*v1.PersistentVolumeClaim, error) {
    	return MarkFSResizeFinished(pvc, newSize, kubeClient)
    }
    
    // MarkFSResizeFinished marks file system resizing as done
    func MarkFSResizeFinished(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/obj6_test.go

    		line := scanner.Text()
    		if len(strings.TrimSpace(line)) == 0 {
    			continue
    		}
    		parts := strings.Split(line, "->")
    		if len(parts) != 2 {
    			t.Fatalf("malformed line %v", line)
    		}
    		r.marks = append(r.marks, marker)
    		marker_insn := fmt.Sprintf("MOVQ $%d, AX", marker)
    		input_insns = append(input_insns, marker_insn)
    		for _, input_insn := range strings.Split(parts[0], ";") {
    			input_insns = append(input_insns, input_insn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:21:30 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/incrementalAnnotationProcessing/groovy/library/src/main/java/Service.java

    /**
     * Marks a class for inclusion in a global service registry.
     */
    public @interface Service {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  9. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

    import spock.lang.Issue
    
    class TaskUpToDateIntegrationTest extends AbstractIntegrationSpec {
        @Issue("https://issues.gradle.org/browse/GRADLE-3540")
        def "order of #annotation marks task not up-to-date"() {
            buildFile << """
                class MyTask extends DefaultTask {
                    @Output${files ? "Files" : "Directories"} FileCollection out
    
                    @TaskAction def exec() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/go/doc/testdata/testing.1.golden

    	func (c *B) Error(args ...any)
    
    	// Errorf is equivalent to Logf() followed by Fail(). 
    	func (c *B) Errorf(format string, args ...any)
    
    	// Fail marks the function as having failed but continues ...
    	func (c *B) Fail()
    
    	// FailNow marks the function as having failed and stops its ...
    	func (c *B) FailNow()
    
    	// Failed reports whether the function has failed. 
    	func (c *B) Failed() bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 8.4K bytes
    - Viewed (0)
Back to top