Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 140 for stanza (0.29 sec)

  1. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

            <plugins>
                <!--
                Both "org.apache" and "org.codehaus" are default providers of MOJO plugins
                which are especially dedicated to Maven projects.
                The MOJO stands for "Maven plain Old Java Object".
                Each mojo is an executable goal in Maven, and a plugin is a distribution of
                one or more related mojos.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  2. pkg/generated/openapi/zz_generated.openapi.go

    				Type:        []string{"object"},
    			},
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  3. src/internal/types/testdata/examples/methods.go

    // for the receiver type. In the example below, method m1 on type T1 has
    // the receiver type T1[A] which declares the type parameter A for use
    // with this method. That is, within the method m1, A stands for the
    // actual type argument provided to an instantiated T1.
    func (t T1[A]) m1() A { return t.a }
    
    // For instance, if T1 is instantiated with the type int, the type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        doLast {
            setMaxWorkers(outputDirectory, 8)
        }
    }
    
    performanceTest.registerAndroidTestProject("santaTrackerAndroidBuild", RemoteProject) {
        remoteUri = 'https://github.com/gradle/santa-tracker-android.git'
        // Pinned from main branch
        ref = 'e9419cad3583427caca97958301ff98fc8e9a1c3'
        doLast {
            addGoogleServicesJson(outputDirectory)
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbolProvider.kt

            withValidityAssertion { analysisSession.symbolProvider.getSymbol(this) }
    
        /**
         * Creates [KaVariableLikeSymbol] by [KtParameter].
         *
         * Unfortunately, [KtParameter] in PSI stands for many things, and not all of them are represented by a single type of symbol,
         * so this function does not work for all possible [KtParameter]s.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. tensorflow/c/eager/parallel_device/parallel_device_testlib.h

    #include "tensorflow/core/platform/test.h"
    
    namespace tensorflow {
    namespace parallel_device {
    
    // A helper for performing common operations on variables. A much more
    // restricted stand-in for tf.Variable in Python.
    class Variable {
     public:
      // Construct a Variable from a resource-dtype TFE_TensorHandle and an
      // indication of the dtype of the variable's value.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 09 01:12:35 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  7. src/go/token/token.go

    type Token int
    
    // The list of tokens.
    const (
    	// Special tokens
    	ILLEGAL Token = iota
    	EOF
    	COMMENT
    
    	literal_beg
    	// Identifiers and basic type literals
    	// (these tokens stand for classes of literals)
    	IDENT  // main
    	INT    // 12345
    	FLOAT  // 123.45
    	IMAG   // 123.45i
    	CHAR   // 'a'
    	STRING // "abc"
    	literal_end
    
    	operator_beg
    	// Operators and delimiters
    	ADD // +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/dra/state/state_checkpoint_test.go

    }
    
    // TODO (https://github.com/kubernetes/kubernetes/issues/123552): reconsider what data gets stored in checkpoints and whether that is really necessary.
    //
    // As it stands now, a "v1" checkpoint contains data for types like the resourcev1alpha2.ResourceHandle
    // which may change over time as new fields get added in a backward-compatible way (not unusual
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. src/text/template/template.go

    // subsequent calls to [Template.Parse], [Template.ParseFiles], or [Template.ParseGlob]. Nested template
    // definitions will inherit the settings. An empty delimiter stands for the
    // corresponding default: {{ or }}.
    // The return value is the template, so calls can be chained.
    func (t *Template) Delims(left, right string) *Template {
    	t.init()
    	t.leftDelim = left
    	t.rightDelim = right
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/go/ast/ast.go

    	Ident struct {
    		NamePos token.Pos // identifier position
    		Name    string    // identifier name
    		Obj     *Object   // denoted object, or nil. Deprecated: see Object.
    	}
    
    	// An Ellipsis node stands for the "..." type in a
    	// parameter list or the "..." length in an array type.
    	//
    	Ellipsis struct {
    		Ellipsis token.Pos // position of "..."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
Back to top