Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 280 for inversion (0.14 sec)

  1. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForBuildOperationsTest.groovy

            when:
            def unknownEvent = Mock(InternalProgressEvent)
            adapter.onEvent(unknownEvent)
    
            then:
            0 * listener.statusChanged(_)
        }
    
        def "conversion of start events throws exception if previous start event with same build descriptor exists"() {
            given:
            def listener = Mock(ProgressListener)
            def adapter = createAdapter(listener)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  2. hack/golangci.yaml

      # Excluding configuration per-path, per-linter, per-text and per-source
      exclude-rules:
        # exclude ineffassign linter for generated files for conversion
        - path: conversion\.go
          linters:
            - ineffassign
    
        # SSA Extract calls are allowed in tests.
        - linters:
            - forbidigo
          text: should not be used because managedFields was removed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. security/pkg/nodeagent/caclient/providers/citadel/client_test.go

    		t.Fatal(err)
    	}
    	return grpc.Creds(credentials.NewTLS(&tls.Config{
    		Certificates: []tls.Certificate{cert},
    		ClientAuth:   tls.VerifyClientCertIfGiven,
    		ClientCAs:    peerCertVerifier.GetGeneralCertPool(),
    		MinVersion:   tls.VersionTLS12,
    	}))
    }
    
    func serve(t *testing.T, ca mockCAServer, opts ...grpc.ServerOption) string {
    	// create a local grpc server
    	s := grpc.NewServer(opts...)
    	t.Cleanup(s.Stop)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 21:03:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

      let arguments = (ins
        TFRT_ChainType:$in_ch,
        I64Attr:$num_args,
        StrAttr:$device,
        ArrayAttr:$op_attrs,
        // TODO(b/173025975): consider using DictionaryAttr after we support
        // BEF conversion for this type.
        ArrayAttr:$op_func_attrs,
        I64Attr:$op_key,
        StrAttr:$op_name
      );
    
      let results = (outs
        TFRT_ChainType:$out_ch
      );
    
      let hasVerifier = 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/StandardJavadocDocletOptionsTest.java

            assertEquals(options, options.use());
            assertTrue(options.isUse());
        }
    
        @Test
        public void testFluentVersion() {
            assertEquals(options, options.version());
            assertTrue(options.isVersion());
        }
    
        @Test
        public void testFluentAuthor() {
            assertEquals(options, options.author());
            assertTrue(options.isAuthor());
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  6. src/runtime/error.go

    	if e._interface != nil {
    		inter = toRType(e._interface).string()
    	}
    	as := toRType(e.asserted).string()
    	if e.concrete == nil {
    		return "interface conversion: " + inter + " is nil, not " + as
    	}
    	cs := toRType(e.concrete).string()
    	if e.missingMethod == "" {
    		msg := "interface conversion: " + inter + " is " + cs + ", not " + as
    		if cs == as {
    			// provide slightly clearer error message
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/convert.go

    }
    
    // walkStringToBytesTemp walks an OSTR2BYTESTMP node.
    func walkStringToBytesTemp(n *ir.ConvExpr, init *ir.Nodes) ir.Node {
    	// []byte(string) conversion that creates a slice
    	// referring to the actual string bytes.
    	// This conversion is handled later by the backend and
    	// is only for use by internal compiler optimizations
    	// that know that the slice won't be mutated.
    	// The only such case today is:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/call.go

    		check.use(call.ArgList...)
    		x.expr = call
    		return statement
    
    	case typexpr:
    		// conversion
    		check.nonGeneric(nil, x)
    		if x.mode == invalid {
    			return conversion
    		}
    		T := x.typ
    		x.mode = invalid
    		switch n := len(call.ArgList); n {
    		case 0:
    			check.errorf(call, WrongArgCount, "missing argument in conversion to %s", T)
    		case 1:
    			check.expr(nil, x, call.ArgList[0])
    			if x.mode != invalid {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  9. pkg/test/echo/server/forwarder/config.go

    	r := c.Request
    	tlsConfig := &tls.Config{
    		GetClientCertificate: c.getClientCertificate,
    		NextProtos:           r.GetAlpn().GetValue(),
    		ServerName:           r.ServerName,
    		MinVersion:           tls.VersionTLS12,
    	}
    	if r.CaCertFile != "" {
    		certData, err := os.ReadFile(r.CaCertFile)
    		if err != nil {
    			return nil, fmt.Errorf("failed to load client certificate: %v", err)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    
    [[sec:java_version_option]]
    ==== The `--java-version` option
    
    When creating a java project you must set the java version. You can do that by supplying *the major version* of java you wish to use:
    
    ```bash
    gradle init --type java-application  --java-version 11 --dsl kotlin # and other parameters
    ```
    
    [[sec:java_library]]
    === `java-library` build type
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top