Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 96 for acc2 (0.13 sec)

  1. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegritySpec.groovy

            duplicateClasses.isEmpty()
        }
    
        private static def collectJars(TestFile file, Collection<File> acc = []) {
            if (file.name.endsWith('.jar')) {
                acc.add(file)
            }
            if (file.isDirectory()) {
                file.listFiles().each { f -> collectJars(f, acc) }
            }
            acc
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/math/big/floatmarsh_test.go

    					}
    
    					if rx.Mode() != mode {
    						t.Errorf("transmission of %s's mode failed: got %s want %s", x, rx.Mode(), mode)
    					}
    
    					if rx.Acc() != tx.Acc() {
    						t.Errorf("transmission of %s's accuracy failed: got %s want %s", x, rx.Acc(), tx.Acc())
    					}
    				}
    			}
    		}
    	}
    }
    
    func TestFloatCorruptGob(t *testing.T) {
    	var buf bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 23 18:18:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/collect/PersistentListTest.groovy

                ["a", "b", "c", "d"]
            ]
        }
    
        private static PersistentList<String> listOf(List<String> elements) {
            return elements.reverse().inject(PersistentList.<String>of()) { acc, val -> acc + val }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/extended-multiple-policies-out.yaml

                        stringMatch:
                          exact: abc1
                    - header:
                        name: X-abc
                        stringMatch:
                          exact: abc2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/lists.go

    				return types.MaybeNoSuchOverloadErr(next)
    			}
    			if acc != nil {
    				s := acc.Add(next)
    				sum, ok := s.(traits.Adder)
    				if !ok {
    					// Should never happen for type checked CEL programs
    					return types.MaybeNoSuchOverloadErr(s)
    				}
    				acc = sum
    			} else {
    				acc = nextAdder
    			}
    		}
    		return acc.(ref.Val)
    	}
    }
    
    func min() functions.UnaryOp {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. src/net/rawconn_test.go

    		}
    		defer c.Close()
    
    		cc2, err := c.(*TCPConn).SyscallConn()
    		if err != nil {
    			t.Fatal(err)
    		}
    		if err := controlRawConn(cc2, c.LocalAddr()); err != nil {
    			t.Fatal(err)
    		}
    
    		ln.Close()
    		if err := controlRawConn(cc1, ln.Addr()); err == nil {
    			t.Fatal("Control after Close should fail")
    		}
    		c.Close()
    		if err := controlRawConn(cc2, c.LocalAddr()); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDslProjectBuildFileIntegrationSpec.groovy

                                System.out.println("primaryAccess = { " +
                                        acc.getName().get() + ", " + acc.getRead().get() + ", " + acc.getWrite().get() + "}"
                                );
                                secondaryAccess.get().forEach(it -> {
                                    System.out.println("secondaryAccess { " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. test/fixedbugs/issue34577.dir/b.go

    package b
    
    import "./a"
    
    type B struct {
    	s string
    }
    
    func (b B) Func(x a.A) a.A {
    	return a.W(x, k, b)
    }
    
    type ktype int
    
    const k ktype = 0
    
    func Func2() a.AI {
    	return a.ACC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 338 bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/testdata/http/multiple-policies-out.yaml

                        stringMatch:
                          exact: abc1
                    - header:
                        name: X-abc
                        stringMatch:
                          exact: abc2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

        }
    
        private def collectGradleProjects(Collection<GradleProject> projects, Collection<GradleProject> acc = []) {
            acc.addAll(projects)
            projects.each { collectGradleProjects(it.children, acc) }
            acc
        }
    
        private void executeTaskViaBuildInvocationsLaunchable(String taskName) {
            withConnection { connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top