Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,788 for a$ (0.03 sec)

  1. src/cmd/compile/internal/types2/validtype.go

    //
    //   struct{_ B[P₁]}
    //         nest = A[A[string]]
    //         path = A[A[string]]
    //
    // The struct has a single field of type B[P₁] with which
    // we continue:
    //
    //   B[P₁]
    //         nest = A[A[string]]
    //         path = A[A[string]]
    //
    //   struct{_ P₂}
    //         nest = A[A[string]]->B[P]
    //         path = A[A[string]]->B[P]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/go/types/validtype.go

    //
    //   struct{_ B[P₁]}
    //         nest = A[A[string]]
    //         path = A[A[string]]
    //
    // The struct has a single field of type B[P₁] with which
    // we continue:
    //
    //   B[P₁]
    //         nest = A[A[string]]
    //         path = A[A[string]]
    //
    //   struct{_ P₂}
    //         nest = A[A[string]]->B[P]
    //         path = A[A[string]]->B[P]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/basic_test.go

    				if err != nil {
    					t.Fatal(err)
    				}
    				if e, a := 1, len(listWithItem.Items); e != a {
    					t.Errorf("expected %v, got %v", e, a)
    				}
    				if e, a := version2, listWithItem.GroupVersionKind().Version; !reflect.DeepEqual(e, a) {
    					t.Errorf("expected %v, got %v", e, a)
    				}
    				if e, a := version2, listWithItem.Items[0].GroupVersionKind().Version; !reflect.DeepEqual(e, a) {
    					t.Errorf("expected %v, got %v", e, a)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 11:35:33 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

                    "package b; import a.A; public class B { A m1() { return new A(); } }"
            }
            succeeds language.compileTaskName
    
            then:
            outputs.recompiledClasses("A", "B", "module-info")
    
            where:
            description                 | inferModulePath | compileArgs                                                  | doFirst
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	/* exprs > chan */
    
    	// InvalidReceive occurs when there is a channel receive from a value that
    	// is either not a channel, or is a send-only channel.
    	//
    	// Example:
    	//  func f() {
    	//  	var x = 1
    	//  	<-x
    	//  }
    	InvalidReceive
    
    	// InvalidSend occurs when there is a channel send to a value that is not a
    	// channel, or is a receive-only channel.
    	//
    	// Example:
    	//  func f() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. docs/zh/docs/index.md

    ---
    
    ## **Typer**,命令行中的 FastAPI
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/LockFileReaderWriterTest.groovy

        }
    
        def 'reads a unique lock file from a custom location'() {
            given:
            def file = tmpDir.file('custom', 'lock.file')
            lockFile.set(file)
            file << """#ignored
    bar=a,c
    foo=a,b,c
    empty=d
    """
    
            when:
            def result = lockFileReaderWriter.readUniqueLockFile()
    
            then:
            result == [a: ['bar', 'foo'], b: ['foo'], c: ['bar', 'foo'], d: []]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleSupportedTypesIntegrationTest.groovy

            "HashSet<String>"                    | "['a', 'b', 'c'] as HashSet"              | "[a, b, c]"
            "LinkedHashSet<String>"              | "['a', 'b', 'c'] as LinkedHashSet"        | "[a, b, c]"
            "CopyOnWriteArraySet<String>"        | "['a', 'b', 'c'] as CopyOnWriteArraySet"  | "[a, b, c]"
            "TreeSet<String>"                    | "['a', 'b', 'c'] as TreeSet"              | "[a, b, c]"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. pkg/istio-agent/agent.go

    			}
    		})
    		return nt
    	}
    	return nil
    }
    
    func (a *Agent) Close() {
    	if a.xdsProxy != nil {
    		a.xdsProxy.close()
    	}
    	if a.localDNSServer != nil {
    		a.localDNSServer.Close()
    	}
    	if a.sdsServer != nil {
    		a.sdsServer.Stop()
    	}
    	if a.secretCache != nil {
    		a.secretCache.Close()
    	}
    	if a.fileWatcher != nil {
    		_ = a.fileWatcher.Close()
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

    import java.util.function.BiFunction;
    
    /**
     * A container object that provides a value of a specific type. The value can be retrieved using one of the query methods
     * such as {@link #get()} or {@link #getOrNull()}.
     *
     * <p>
     * A provider may not always have a value available, for example when the value may not yet be known but will be known
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top