Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 309 for CL (0.04 sec)

  1. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/AsmClassGeneratorUtils.java

            if (type instanceof Class) {
                Class<?> cl = (Class<?>) type;
                if (cl.isPrimitive()) {
                    builder.append(descriptorOf(cl));
                } else {
                    builder.append('L');
                    builder.append(cl.getName().replace('.', '/'));
                }
            } else {
                visitType(type, builder);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/composite/composite.go

    	inspect := pass.ResultOf[inspect.Analyzer].(*inspector.Inspector)
    
    	nodeFilter := []ast.Node{
    		(*ast.CompositeLit)(nil),
    	}
    	inspect.Preorder(nodeFilter, func(n ast.Node) {
    		cl := n.(*ast.CompositeLit)
    
    		typ := pass.TypesInfo.Types[cl].Type
    		if typ == nil {
    			// cannot determine composite literals' type, skip it
    			return
    		}
    		typeName := typ.String()
    		if whitelist && unkeyedLiteral[typeName] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. pkg/test/framework/config.go

    	}
    
    	g, _ := errgroup.WithContext(context.TODO())
    	for _, cl := range c.clusters {
    		cl := cl
    		g.Go(func() error {
    			scopes.Framework.Debugf("Applying to %s to namespace %v: %s", cl.StableName(), ns, strings.Join(yamlFiles, ", "))
    			if err := cl.ApplyYAMLFiles(ns, yamlFiles...); err != nil {
    				return fmt.Errorf("failed applying YAML files %v to ns %s in cluster %s: %v", yamlFiles, ns, cl.Name(), err)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/tf_stablehlo_pass.cc

      Option<bool> skip_quantization_ops_{
          *this, "skip-quantization-ops",
          ::llvm::cl::desc("Skip quantization ops")};
    
      Option<bool> skip_resize_{
          *this, "skip-resize",
          ::llvm::cl::desc("Skip tf.ResizeBilinear and tf.ResizeNearestNeighbor")};
    
      Option<bool> skip_partitioned_calls_{
          *this, "skip-partitioned-calls",
          ::llvm::cl::desc(
              "Skip tf.StatefulPartitionedCall and tf.PartitionedCall")};
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. pkg/kube/version_test.go

    			clusterVersion: 16,
    			minorVersion:   15,
    			want:           true,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			cl := NewFakeClientWithVersion(fmt.Sprint(tt.clusterVersion))
    			if got := IsAtLeastVersion(cl, tt.minorVersion); got != tt.want {
    				t.Errorf("IsAtLeastVersion() = %v, want %v", got, tt.want)
    			}
    		})
    	}
    }
    
    func TestIsLessThanVersionVersion(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 23:16:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. doc/README.md

    If your CL addresses an accepted proposal, mention the proposal issue number in
    your release note in the form `/issue/NUMBER`. A link to the issue in the text
    will have this form (see below). If you don't want to mention the issue in the
    text, add it as a comment:
    ```
    <!-- go.dev/issue/12345 -->
    ```
    If an accepted proposal is mentioned in a CL but not in the release notes, it will be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. security/pkg/nodeagent/caclient/providers/mock/mockcaclient.go

    	cl := CAClient{
    		SignInvokeCount: 0,
    		certLifetime:    certLifetime,
    		mockTrustAnchor: mockTrustAnchor,
    	}
    	bundle, err := util.NewVerifiedKeyCertBundleFromFile(caCertPath, caKeyPath, certChainPath, rootCertPath)
    	if err != nil {
    		return nil, fmt.Errorf("mock ca client creation error: %v", err)
    	}
    	cl.bundle = bundle
    
    	atomic.StoreUint64(&cl.SignInvokeCount, 0)
    	return &cl, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r213/ModelsWithGradleProjectIdentifierCrossVersionSpec.groovy

        }
    
        def singleProjectBuild(String projectName, @DelegatesTo(BuildTestFile) Closure cl = {}) {
            buildTestFixture.singleProjectBuild(projectName, cl)
        }
    
        def multiProjectBuild(String projectName, List<String> subprojects, @DelegatesTo(BuildTestFile) Closure cl = {}) {
            buildTestFixture.multiProjectBuild(projectName, subprojects, cl)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

            connectorConfigurers << cl
        }
    
        def <T> T withConnection(@DelegatesTo(ProjectConnection) Closure<T> cl) {
            def connector = connector()
            withConnection(connector, cl)
        }
    
        def <T> T withConnection(connector, @DelegatesTo(ProjectConnection) Closure<T> cl) {
            return withConnectionRaw(connector, cl)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/PayloadSerializerObjectOutputStream.java

            Class<?> targetClass = desc.forClass();
            writeClass(targetClass);
        }
    
        @Override
        protected void annotateProxyClass(Class<?> cl) throws IOException {
            writeInt(cl.getInterfaces().length);
            for (Class<?> type : cl.getInterfaces()) {
                writeClass(type);
            }
        }
    
        private void writeClass(Class<?> targetClass) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top