Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,214 for Did (0.02 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

         */
        WorkResult sync(Action<? super CopySpec> action);
    
        /**
         * Deletes the specified files.
         * The given action is used to configure a {@link DeleteSpec}, which is then used to delete the files.
         *
         * @param action Action to configure the DeleteSpec
         * @return {@link WorkResult} that can be used to check if delete did any work.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/runtime/cgo/handle_test.go

    			if r := recover(); r != nil {
    				return
    			}
    			t.Fatalf("Delete of zero handle did not trigger a panic")
    		}()
    
    		h.Delete()
    	})
    
    	t.Run("invalid", func(t *testing.T) {
    		h := NewHandle(42)
    
    		defer func() {
    			if r := recover(); r != nil {
    				h.Delete()
    				return
    			}
    			t.Fatalf("Invalid handle did not trigger a panic")
    		}()
    
    		Handle(h + 1).Delete()
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. lib/time/mkzip.go

    		seen[name] = true
    		return nil
    	})
    	if err != nil {
    		log.Fatal(err)
    	}
    	if err := zw.Close(); err != nil {
    		log.Fatal(err)
    	}
    	if len(seen) == 0 {
    		log.Fatalf("did not find any files to add")
    	}
    	if !seen["US/Eastern"] {
    		log.Fatalf("did not find US/Eastern to add")
    	}
    	if err := os.WriteFile(args[0], zb.Bytes(), 0666); err != nil {
    		log.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:32:07 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. src/crypto/tls/quic_test.go

    	if !cli2.conn.ConnectionState().DidResume {
    		t.Errorf("second connection did not use session resumption")
    	}
    	cliSecret := cli2.writeSecret[QUICEncryptionLevelEarly]
    	if cliSecret.secret == nil {
    		t.Errorf("client did not receive early data write secret")
    	}
    	srvSecret := srv2.readSecret[QUICEncryptionLevelEarly]
    	if srvSecret.secret == nil {
    		t.Errorf("server did not receive early data read secret")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. cmd/site-replication-utils_gen.go

    			if err != nil {
    				err = msgp.WrapError(err, "Version")
    				return
    			}
    		case "ss":
    			err = z.Status.DecodeMsg(dc)
    			if err != nil {
    				err = msgp.WrapError(err, "Status")
    				return
    			}
    		case "did":
    			z.DeplID, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "DeplID")
    				return
    			}
    		case "bkts":
    			var zb0002 uint32
    			zb0002, err = dc.ReadMapHeader()
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Nov 14 15:16:40 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/OutputSnapshotUtil.java

         * are considered outputs of the work.
         *
         * Entries that are considered outputs are:
         *
         * <ul>
         * <li>an entry that did not exist before the execution, but exists after the execution,</li>
         * <li>an entry that did exist before the execution, and has been changed during the execution,</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/RichReportScrapper.kt

                .text()
                .substringBefore(" If you did this intentionally")
        }
    
    
    private
    fun Document.scrapeMessagesForSeverity(severity: String): List<ReportMessage> =
    
        select("tr.severity-$severity").map { tr ->
            val entry = tr.select("td")[1]
            ReportMessage(
                entry.select("span")
                    .text().substringBefore(" If you did this intentionally"),
                entry.select("ul li")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 16:02:23 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/TaskOutcome.java

     */
    public enum TaskOutcome {
    
        /**
         * The task executed and performed its actions without failure.
         */
        SUCCESS,
    
        /**
         * The task attempted to execute, but did not complete successfully.
         */
        FAILED,
    
        /**
         * The task was not executed, as its output was up to date.
         */
        UP_TO_DATE,
    
        /**
         * The task was not executed due to some reason.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. test/linkx_run.go

    		os.Exit(1)
    	}
    	outstr := string(outx)
    	if !strings.Contains(outstr, "main.b") {
    		fmt.Printf("-X linker flag did not diagnose overwrite of main.b:\n%s\n", outstr)
    		os.Exit(1)
    	}
    	if !strings.Contains(outstr, "main.x") {
    		fmt.Printf("-X linker flag did not diagnose overwrite of main.x:\n%s\n", outstr)
    		os.Exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResultTest.groovy

            when:
            result.assertOutputContains("missing")
    
            then:
            def e = thrown(AssertionError)
            error(e).startsWith(error('''
                Did not find expected text in build output.
                Expected: missing
    
                Build output:
                =======
                message
                message 2
                '''))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top