Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,242 for mate (0.24 sec)

  1. platforms/documentation/docs/src/samples/build-organization/composite-builds/plugin-dev/kotlin/greeting-plugin/src/main/java/org/sample/GreetingPlugin.java

        public void apply(Project project) {
            GreetingExtension extension = project.getExtensions().create("greeting", GreetingExtension.class);
            extension.getWho().convention("mate");
            TaskProvider<GreetingTask> task = project.getTasks().register("greeting", GreetingTask.class, t -> {
                t.getWho().convention(extension.getWho());
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 595 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/composite-builds/plugin-dev/groovy/greeting-plugin/src/main/java/org/sample/GreetingPlugin.java

        public void apply(Project project) {
            GreetingExtension extension = project.getExtensions().create("greeting", GreetingExtension.class);
            extension.getWho().convention("mate");
            TaskProvider<GreetingTask> task = project.getTasks().register("greeting", GreetingTask.class, t -> {
                t.getWho().convention(extension.getWho());
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 595 bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/cs/stopwords.txt

    a
    s
    k
    o
    i
    u
    v
    z
    dnes
    cz
    tímto
    budeš
    budem
    byli
    jseš
    můj
    svým
    ta
    tomto
    tohle
    tuto
    tyto
    jej
    zda
    proč
    máte
    tato
    kam
    tohoto
    kdo
    kteří
    mi
    nám
    tom
    tomuto
    mít
    nic
    proto
    kterou
    byla
    toho
    protože
    asi
    ho
    naši
    napište
    re
    což
    tím
    takže
    svých
    její
    svými
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 992 bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"massage":                              "\U0001f486",
    	"massage_man":                          "\U0001f486\u200d\u2642\ufe0f",
    	"massage_woman":                        "\U0001f486\u200d\u2640\ufe0f",
    	"mate":                                 "\U0001f9c9",
    	"mauritania":                           "\U0001f1f2\U0001f1f7",
    	"mauritius":                            "\U0001f1f2\U0001f1fa",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/plugins/form-validator/date.js

    a.jQuery)}(this,function(a){!function(a){function b(a,b,d){var e=new Date(a,b,d),f=new Date,g=f.getFullYear()-e.getFullYear();e.setFullYear(e.getFullYear()+g),e>f&&(g--,e.setFullYear(e.getFullYear()-1));var h=Math.floor((f.getTime()-e.getTime())/864e5),i=g+h/(c(f.getFullYear())?366:365),j=((i+"").split(".")[1]||"").substr(0,3);return i>=0?Math.floor(i)+(j>=915?1:0):(j*=10,Math.floor(i)+(j<=840?1:0))}function c(a){var b=new Date(a,1,28);return b.setDate(b.getDate()+1),1===b.getMonth()}a.formUtils...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/upload/date.go

    import (
    	"fmt"
    	"os"
    	"sync"
    	"time"
    
    	"golang.org/x/telemetry/internal/counter"
    )
    
    // time and date handling
    
    var distantPast = 21 * 24 * time.Hour
    
    // reports that are too old (21 days) are not uploaded
    func (u *uploader) tooOld(date string, uploadStartTime time.Time) bool {
    	t, err := time.Parse("2006-01-02", date)
    	if err != nil {
    		u.logger.Printf("tooOld: %v", err)
    		return false
    	}
    	age := uploadStartTime.Sub(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. src/make.bash

    bootgo=1.20.6
    
    set -e
    
    if [[ ! -f run.bash ]]; then
    	echo 'make.bash must be run from $GOROOT/src' 1>&2
    	exit 1
    fi
    
    if [[ "$GOBUILDTIMELOGFILE" != "" ]]; then
    	echo $(LC_TIME=C date) start make.bash >"$GOBUILDTIMELOGFILE"
    fi
    
    # Test for Windows.
    case "$(uname)" in
    *MINGW* | *WIN32* | *CYGWIN*)
    	echo 'ERROR: Do not use make.bash to build on Windows.'
    	echo 'Use make.bat instead.'
    	echo
    	exit 1
    	;;
    esac
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. src/make.rc

    # (make.bash, make.bat, make.rc)....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. src/make.bat

    goto fail
    L155:del .\cmd\dist\dist.exe
    L156:goto :eof
    L157:
    L158::: DO NOT ADD ANY NEW CODE HERE.
    L159::: The bootstrap+del above are the final step of make.bat.
    L160::: If something must be added, add it to cmd/dist's cmdbootstrap,
    L161::: to avoid needing three copies in three different shell languages
    L162::: (make.bash, make.bat, make.rc).
    L163:
    L164::copydist
    L165:mkdir "%GOTOOLDIR%" 2>NUL
    L166:copy cmd\dist\dist.exe "%GOTOOLDIR%\"
    L167:goto :eof
    L168:
    L169::nogoenv
    L170:set GO111MODULE=off
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. pkg/api/endpoints/testing/make.go

    Tim Hockin <******@****.***> 1625032124 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 01:26:45 UTC 2021
    - 1.9K bytes
    - Viewed (0)
Back to top