Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 761 for course (0.09 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part7_gradle_refs.adoc

    - link:https://discuss.gradle.org/[Gradle Forum]
    - link:https://gradle-community.slack.com/[Gradle Slack Channel]
    - link:https://gradle.org/courses/[Free Gradle Training]
    
    == Step 2. Next steps
    We recommend going through each section of the User Manual.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. docs/ja/docs/advanced/index.md

    以降のセクションは、すでにチュートリアルを読んで、その主要なアイデアを理解できていることを前提としています。
    
    ## テスト駆動開発のコース
    
    このセクションの内容を補完するために脱初心者用コースを受けたい場合は、**TestDriven.io**による、<a href="https://testdriven.io/courses/tdd-fastapi/" class="external-link" target="_blank">Test-Driven Development with FastAPI and Docker</a>を確認するのがよいかもしれません。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/watch/mux_test.go

    	event2 := Event{Type: Added, Object: &myType{"bar", "hello world 2"}}
    
    	// Add a couple watchers
    	watches := make([]Interface, 2)
    	var err error
    	for i := range watches {
    		watches[i], err = m.Watch()
    		if err != nil {
    			t.Fatalf("Unable start event watcher: '%v' (will not retry!)", err)
    		}
    	}
    
    	// Send a couple events before closing the broadcast channel.
    	t.Log("Sending event 1")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 16 15:26:25 UTC 2022
    - 8K bytes
    - Viewed (0)
  4. test/varerr.go

    // errorcheck
    
    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Verify that a couple of illegal variable declarations are caught by the compiler.
    // Does not compile.
    
    package main
    
    func main() {
    	_ = asdf	// ERROR "undefined.*asdf"
    
    	new = 1	// ERROR "use of builtin new not in function call|invalid left hand side|must be called"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 21:22:23 UTC 2020
    - 449 bytes
    - Viewed (0)
  5. architecture/README.md

    ## Platform architecture
    
    Gradle is arranged into several coarse-grained components called "platforms".
    Each platform provides support for some kind of automation, such as building JVM software or building Gradle plugins.
    Most platforms typically build on the features of other platforms.
    
    By understanding the Gradle platforms and their relationships, you can get a feel for where in the Gradle source a particular feature might be implemented.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/codec.go

    		groupKinds = append(groupKinds, gk.String())
    	}
    	result := map[string]string{
    		"name":     "multi",
    		"target":   v.target.String(),
    		"accepted": strings.Join(groupKinds, ","),
    		"coerce":   strconv.FormatBool(v.coerce),
    	}
    	identifier, err := json.Marshal(result)
    	if err != nil {
    		klog.Fatalf("Failed marshaling Identifier for %#v: %v", v, err)
    	}
    	return string(identifier)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:20:30 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. test/fixedbugs/issue23912.go

    // compile
    
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // A couple of aliases cases that gccgo incorrectly gave errors for.
    
    package p
    
    func F1() {
    	type E = struct{}
    	type X struct{}
    	var x X
    	var y E = x
    	_ = y
    }
    
    func F2() {
    	type E = struct{}
    	type S []E
    	type T []struct{}
    	type X struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 01:57:14 UTC 2018
    - 516 bytes
    - Viewed (0)
  8. src/runtime/linkname.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import _ "unsafe"
    
    // used in internal/godebug and syscall
    //go:linkname write
    
    // used by cgo
    //go:linkname _cgo_panic_internal
    //go:linkname cgoAlwaysFalse
    //go:linkname cgoUse
    //go:linkname cgoCheckPointer
    //go:linkname cgoCheckResult
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 778 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/getting_started_dev.adoc

    // limitations under the License.
    
    [[dev_introduction]]
    = Getting Started
    
    ++++
    <div class="badge-wrapper">
        <a class="badge" href="https://dpeuniversity.gradle.com/app/courses/012de84f-fcd3-45d4-9c4c-284382eb3f3f/" target="_blank">
            <span class="badge-type button--blue">LEARN</span>
            <span class="badge-text">Introduction to Gradle for Developers&nbsp;&nbsp;&nbsp;&gt;</span>
        </a>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/api/internal/coerce/PropertySetTransformer.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.coerce;
    
    public interface PropertySetTransformer {
        Object transformValue(Class<?> type, Object value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 758 bytes
    - Viewed (0)
Back to top