Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for Positions (0.2 sec)

  1. src/cmd/go/alldocs.go

    //
    // The error information, if any, is
    //
    //	type PackageError struct {
    //	    ImportStack   []string // shortest path from package named on command line to this one
    //	    Pos           string   // position of error (if present, file:line:col)
    //	    Err           string   // the error itself
    //	}
    //
    // The module information is a Module struct, defined in the discussion
    // of list -m below.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. samples/addons/grafana.yaml

    text","showLineNumbers":false,"showMiniMap":false},"content":"<div>\n  <div style=\"position: absolute; bottom: 0\">\n    <a href=\"https://istio.io\" target=\"_blank\" style=\"font-size: 30px; text-decoration: none; color: inherit\"><img src=\"https://raw.githubusercontent.com/cncf/artwork/master/projects/istio/icon/color/istio-icon-color.svg\" style=\"height: 50px\"> Istio</a>\n  </div>\n  <div style=\"position: absolute; bottom: 0; right: 0; font-size: 15px\">\n    Istio is an <a href=\"https...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        otherwise piped through without changes.
    
        This complements MLIRs dumping functionality, which can sometimes be hard
        to configure. This pass is useful if you know the exact position in the
        pipeline where you want to dump, and are able to easily modify the pipeline
        source code.
      }];
      let constructor = "TF::CreatePrintPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    	DF_1_SINGLETON DynFlag1 = 0x02000000
    	// Indicates that the object is a stub.
    	DF_1_STUB DynFlag1 = 0x04000000
    	// Indicates that the object is a position-independent executable.
    	DF_1_PIE DynFlag1 = 0x08000000
    	// Indicates that the object is a kernel module.
    	DF_1_KMOD DynFlag1 = 0x10000000
    	// Indicates that the object is a weak standard filter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/horizontal_test.go

    				for i, r := range hc.recommendations[tc.key] {
    					expectedRecommendation := tc.expectedRecommendations[i]
    					assert.Equal(t, expectedRecommendation.recommendation, r.recommendation, "stored recommendation differs at position %d", i)
    				}
    			}
    		})
    	}
    }
    
    func TestScaleUpOneMetricEmpty(t *testing.T) {
    	tc := testCase{
    		minReplicas:             2,
    		maxReplicas:             6,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    	}
    
    	va = uint64(Rnd(int64(va), *FlagRound))
    	if ctxt.HeadType == objabi.Haix && len(Segrelrodata.Sections) == 0 {
    		// Data sections are moved to an unreachable segment
    		// to ensure that they are position-independent.
    		// Already done if relro sections exist.
    		va += uint64(XCOFFDATABASE) - uint64(XCOFFTEXTBASE)
    	}
    	order = append(order, &Segdata)
    	Segdata.Rwx = 06
    	Segdata.Vaddr = va
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    func TestQueryNamedArg(t *testing.T) {
    	db := newTestDB(t, "people")
    	defer closeDB(t, db)
    	prepares0 := numPrepares(t, db)
    	rows, err := db.Query(
    		// Ensure the name and age parameters only match on placeholder name, not position.
    		"SELECT|people|age,name|name=?name,age=?age",
    		Named("age", 2),
    		Named("name", "Bob"),
    	)
    	if err != nil {
    		t.Fatalf("Query: %v", err)
    	}
    	type row struct {
    		age  int
    		name string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    		}
    		s := movcon(d)
    		if s < 0 || s >= 4 {
    			c.ctxt.Diag("bad constant for MOVK: %#x\n%v", uint64(d), p)
    		}
    		if (o1&S64) == 0 && s >= 2 {
    			c.ctxt.Diag("illegal bit position\n%v", p)
    		}
    		if ((uint64(d) >> uint(s*16)) >> 16) != 0 {
    			c.ctxt.Diag("requires uimm16\n%v", p)
    		}
    		rt := int(p.To.Reg)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top