Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 121 for toIndex (0.09 sec)

  1. pkg/controller/job/indexed_job_utils_test.go

    		wantRm      []indexPhase
    		wantLeft    []indexPhase
    		completions int32
    	}{
    		"all unique": {
    			pods: []indexPhase{
    				{noIndex, v1.PodPending},
    				{"2", v1.PodPending},
    				{"5", v1.PodRunning},
    				{"6", v1.PodRunning},
    			},
    			wantRm: []indexPhase{
    				{noIndex, v1.PodPending},
    				{"6", v1.PodRunning},
    			},
    			wantLeft: []indexPhase{
    				{"2", v1.PodPending},
    				{"5", v1.PodRunning},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs-asciidoctor-extensions-base/src/main/java/org/gradle/docs/asciidoctor/MetadataDocinfoProcessor.java

     * attributes the pattern "meta_name-$NAME=$CONTENT" or
     * "meta_property-$PROPERTY=$CONTENT".
     *
     * For example the declaration ":meta-name-robots: noindex" would produce:
     * <meta name="robots" content="noindex">
     *
     * Underscores will be replaced with colons. ":meta-property-og_locale: en_US"
     * would produce <meta property="og:locale" content="en_US">
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/index_test.go

    import (
    	"encoding/hex"
    	"encoding/json"
    	"go/build"
    	"internal/diff"
    	"path/filepath"
    	"reflect"
    	"runtime"
    	"testing"
    )
    
    func init() {
    	isTest = true
    	enabled = true // to allow GODEBUG=goindex=0 go test, when things are very broken
    }
    
    func TestIndex(t *testing.T) {
    	src := filepath.Join(runtime.GOROOT(), "src")
    	checkPkg := func(t *testing.T, m *Module, pkg string, data []byte) {
    		p := m.Package(pkg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 28 23:35:08 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

                };
            };
    
            final ResponseData responseData = new ResponseData();
            responseData.setUrl("http://example.com/");
            responseData.addMetaData("X-Robots-Tag", "noindex,nofollow");
    
            try {
                transformer.processXRobotsTag(responseData, new ResultData());
                fail();
            } catch (ChildUrlsException e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/expr.go

    		n.SetType(nil)
    		return n
    	}
    	if !t.IsInterface() {
    		base.Fatalf("OITAB of %v", t)
    	}
    	n.SetType(types.NewPtr(types.Types[types.TUINTPTR]))
    	return n
    }
    
    // tcIndex typechecks an OINDEX node.
    func tcIndex(n *ir.IndexExpr) ir.Node {
    	n.X = Expr(n.X)
    	n.X = DefaultLit(n.X, nil)
    	n.X = implicitstar(n.X)
    	l := n.X
    	n.Index = Expr(n.Index)
    	r := n.Index
    	t := l.Type()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/walk.go

    	case types.ASTRING:
    		return mapfaststr
    	}
    	return mapslow
    }
    
    func walkAppendArgs(n *ir.CallExpr, init *ir.Nodes) {
    	walkExprListSafe(n.Args, init)
    
    	// walkExprListSafe will leave OINDEX (s[n]) alone if both s
    	// and n are name or literal, but those may index the slice we're
    	// modifying here. Fix explicitly.
    	ls := n.Args
    	for i1, n1 := range ls {
    		ls[i1] = cheapExpr(n1, init)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/userguide_single.adoc

    // limitations under the License.
    
    = Gradle User Manual: Version {gradleVersion}
    :description: Single-page Gradle User Manual for Gradle {gradleVersion}
    :meta-name-robots: noindex
    :meta-name-twitter_card: summary
    :meta-name-twitter_site: @gradle
    :meta-name-twitter_creator: @gradle
    :meta-name-twitter_title: Gradle User Manual: Version {gradleVersion}
    :meta-name-twitter_description: {description}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 22:56:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/typecheck.go

    	case ir.OXDOT, ir.ODOT:
    		n := n.(*ir.SelectorExpr)
    		return tcDot(n, top)
    
    	case ir.ODOTTYPE:
    		n := n.(*ir.TypeAssertExpr)
    		return tcDotType(n)
    
    	case ir.OINDEX:
    		n := n.(*ir.IndexExpr)
    		return tcIndex(n)
    
    	case ir.ORECV:
    		n := n.(*ir.UnaryExpr)
    		return tcRecv(n)
    
    	case ir.OSEND:
    		n := n.(*ir.SendStmt)
    		return tcSend(n)
    
    	case ir.OSLICEHEADER:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/StandardJavadocDocletOptionsTest.java

            assertEquals(options, options.noTree());
            assertTrue(options.isNoTree());
        }
    
        @Test
        public void testFluentNoIndex() {
            assertEquals(options, options.noIndex());
            assertTrue(options.isNoIndex());
        }
    
        @Test
        public void testFluentNoNavBar() {
            assertEquals(options, options.noNavBar());
            assertTrue(options.isNoNavBar());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    		},
    	}
    
    	modes := []v1.PersistentVolumeMode{v1.PersistentVolumeBlock, v1.PersistentVolumeFilesystem}
    
    	for modeIndex := range modes {
    		for tcIndex := range tests {
    			mode := modes[modeIndex]
    			tc := tests[tcIndex]
    			testName := fmt.Sprintf("%s [%s]", tc.name, mode)
    			uniqueTestString := fmt.Sprintf("global-mount-%s", testName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
Back to top