Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,461 for g$ (0.06 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/yaml/yaml_test.go

    e: &e [*d,*d,*d,*d,*d,*d,*d,*d,*d,*d,*d,*d,*d,*d,*d,*d,*d,*d]
    f: &f [*e,*e,*e,*e,*e,*e,*e,*e,*e,*e,*e,*e,*e,*e,*e,*e,*e,*e]
    g: &g [*f,*f,*f,*f,*f,*f,*f,*f,*f,*f,*f,*f,*f,*f,*f,*f,*f,*f]
    h: &h [*g,*g,*g,*g,*g,*g,*g,*g,*g,*g,*g,*g,*g,*g,*g,*g,*g,*g]
    i: &i [*h,*h,*h,*h,*h,*h,*h,*h,*h,*h,*h,*h,*h,*h,*h,*h,*h,*h]
    kind: ConfigMap
    metadata:
    name: yaml-bomb
    namespace: default
    `),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 06 20:18:22 UTC 2020
    - 14.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/GroovyJavaJointIncrementalCompilationIntegrationTest.groovy

            'Change Java files'                         | ['G', 'J']   | ['G', 'J.failure']   | ['G', 'J.changed']   | ['J']                         | 'Incremental compilation of' | ['G', 'J.changed']
            'Change Groovy files'                       | ['G', 'J']   | ['G.failure', 'J']   | ['G.changed', 'J']   | ['G']                         | 'Incremental compilation of' | ['G.changed', 'J']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. src/math/arith_s390x_test.go

    		}
    	}
    	a := 9.0
    	if f := Log1pNovec(a); f != Ln10 {
    		t.Errorf("Log1p(%g) = %g, want %g", a, f, Ln10)
    	}
    	for i := 0; i < len(vflogSC); i++ {
    		if f := Log1pNovec(vflog1pSC[i]); !alike(log1pSC[i], f) {
    			t.Errorf("Log1p(%g) = %g, want %g", vflog1pSC[i], f, log1pSC[i])
    		}
    	}
    }
    
    func TestAtanhNovec(t *testing.T) {
    	if !HasVX {
    		t.Skipf("no vector support")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 08 19:52:30 UTC 2017
    - 10.8K bytes
    - Viewed (0)
  4. pkg/collateral/control.go

    					break
    				}
    			}
    
    			g.emit("<table class=\"command-flags\">")
    			g.emit("<thead>")
    			g.emit("<tr>")
    			g.emit("<th>Flags</th>")
    			if genShorthand {
    				g.emit("<th>Shorthand</th>")
    			}
    			g.emit("<th>Description</th>")
    			g.emit("</tr>")
    			g.emit("</thead>")
    			g.emit("<tbody>")
    
    			for _, n := range names {
    				g.genFlag(f[n], genShorthand)
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. src/math/cmplx/cmath_test.go

    			t.Errorf("Conj(%g) = %g, want %g", vc[i], f, conj[i])
    		}
    	}
    	for i := 0; i < len(vcConjSC); i++ {
    		if f := Conj(vcConjSC[i]); !cAlike(conjSC[i], f) {
    			t.Errorf("Conj(%g) = %g, want %g", vcConjSC[i], f, conjSC[i])
    		}
    	}
    }
    func TestCos(t *testing.T) {
    	for i := 0; i < len(vc); i++ {
    		if f := Cos(vc[i]); !cSoclose(cos[i], f, 3e-15) {
    			t.Errorf("Cos(%g) = %g, want %g", vc[i], f, cos[i])
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 48.1K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

        assertEquals("/a/b/c/..g", simplifyPath("/a/b/c/..g"));
        assertEquals("/a/b/g", simplifyPath("/a/b/c/./../g"));
        assertEquals("/a/b/c/g", simplifyPath("/a/b/c/./g/."));
        assertEquals("/a/b/c/g/h", simplifyPath("/a/b/c/g/./h"));
        assertEquals("/a/b/c/h", simplifyPath("/a/b/c/g/../h"));
        assertEquals("/a/b/c/g;x=1/y", simplifyPath("/a/b/c/g;x=1/./y"));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 11K bytes
    - Viewed (0)
  7. src/crypto/aes/gcm_s390x.go

    	var hk gcmHashKey
    	c.Encrypt(hk[:], hk[:])
    	g := gcmAsm{
    		block:     c,
    		hashKey:   hk,
    		nonceSize: nonceSize,
    		tagSize:   tagSize,
    	}
    	if cpu.S390X.HasAESGCM {
    		g := gcmKMA{g}
    		return &g, nil
    	}
    	return &g, nil
    }
    
    func (g *gcmAsm) NonceSize() int {
    	return g.nonceSize
    }
    
    func (g *gcmAsm) Overhead() int {
    	return g.tagSize
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/node/graph.go

    		g.graph.RemoveEdge(edge)
    		g.removeEdgeFromDestinationIndex_locked(edge)
    	}
    }
    
    // A fastpath for recomputeDestinationIndex_locked for "removing edge" case.
    func (g *Graph) removeEdgeFromDestinationIndex_locked(e graph.Edge) {
    	n := e.From()
    	// don't maintain indices for nodes with few edges
    	edgeCount := g.graph.Degree(n)
    	if edgeCount < g.destinationEdgeThreshold {
    		delete(g.destinationEdgeIndex, n.ID())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. src/runtime/asm_mips64x.s

    	JMP	(R4)
    
    // void mcall(fn func(*g))
    // Switch to m->g0's stack, call fn(g).
    // Fn must never return. It should gogo(&g->sched)
    // to keep running g.
    TEXT runtime·mcall(SB), NOSPLIT|NOFRAME, $0-8
    	// Save caller state in g->sched
    	MOVV	R29, (g_sched+gobuf_sp)(g)
    	MOVV	R31, (g_sched+gobuf_pc)(g)
    	MOVV	R0, (g_sched+gobuf_lr)(g)
    
    	// Switch to m->g0 & its stack, call fn.
    	MOVV	g, R1
    	MOVV	g_m(g), R3
    	MOVV	m_g0(R3), g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  10. tests/integration/pilot/analyze_test.go

    		} else {
    			g.Expect(line).To(ContainSubstring(boilerplateLines[i-len(expected)]))
    		}
    	}
    }
    
    func expectNoMessages(t test.Failer, g *GomegaWithT, output []string) {
    	t.Helper()
    	g.Expect(output).To(HaveLen(1))
    	g.Expect(output[0]).To(ContainSubstring("No validation issues found when analyzing"))
    }
    
    func expectJSONMessages(t test.Failer, g *GomegaWithT, output string, expected ...*diag.MessageType) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top