Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for Starting (0.17 sec)

  1. cmd/bucket-replication.go

    			},
    			UserAgent: "Internal: [Replication]",
    			Host:      globalLocalNodeName,
    			EventName: event.ObjectReplicationNotTracked,
    		})
    		return
    	}
    
    	// Lock the object name before starting replication operation.
    	// Use separate lock that doesn't collide with regular objects.
    	lk := objectAPI.NewNSLock(bucket, "/[replicate]/"+dobj.ObjectName)
    	lkctx, err := lk.GetLock(ctx, globalOperationTimeout)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    		return OPVCC(31, 4, 0, 0)
    	case ATD:
    		return OPVCC(31, 68, 0, 0)
    
    	/* Vector (VMX/Altivec) instructions */
    	/* ISA 2.03 enables these for PPC970. For POWERx processors, these */
    	/* are enabled starting at POWER6 (ISA 2.05). */
    	case AVAND:
    		return OPVX(4, 1028, 0, 0) /* vand - v2.03 */
    	case AVANDC:
    		return OPVX(4, 1092, 0, 0) /* vandc - v2.03 */
    	case AVNAND:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	// an archive from a set of object files.
    	// typically it is run in the object directory.
    	pack(b *Builder, a *Action, afile string, ofiles []string) error
    	// ld runs the linker to create an executable starting at mainpkg.
    	ld(b *Builder, root *Action, targetPath, importcfg, mainpkg string) error
    	// ldShared runs the linker to create a shared library containing the pkgs built by toplevelactions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    				va = uint64(Rnd(int64(va), ppc64maxFuncalign))
    			}
    
    			// Set the length for the previous text section
    			sect.Length = va - sect.Vaddr
    
    			// Create new section, set the starting Vaddr
    			sect = addsection(ctxt.loader, ctxt.Arch, &Segtext, ".text", 05)
    
    			sect.Vaddr = va
    			sect.Align = sectAlign
    			ldr.SetSymSect(s, sect)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. src/database/sql/sql_test.go

    				var op string
    				if err := stmt.QueryRow("sleep", sleepMillis).Scan(&op); err != nil && err != ErrNoRows {
    					t.Error(err)
    				}
    			}()
    		}
    		// Wait for the batch of queries above to finish before starting the next round.
    		wg.Wait()
    	}
    
    	if g, w := db.numFreeConns(), 10; g != w {
    		t.Errorf("free conns = %d; want %d", g, w)
    	}
    
    	if n := db.numDepsPoll(t, 20); n > 20 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    // 4 conditions below are checked to filter out cases where `transpose` and
    // `slice` are required for conversion to `tfl.gather_nd`.
    // Condition 1 - `start_index_map` should be an increasing sequence starting
    // from 0 with step 1.
    // Condition 2 - `index_vector_dim` should be the last dimension of
    // `start_indices`.
    // Condition 3 - `offset_dims` should be the last dimensions of `output`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            "envFrom": {
              "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
              "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // interface.
      Status ConvertLibFunction(llvm::StringRef func_name);
    
      // Returns the list of nodes in the graph. Nodes are presented in the reverse
      // order of a post-order depth-first visit starting from the graph's source
      // nodes.
      llvm::ArrayRef<Node*> GetOrderedNodes() const { return ordered_nodes_; }
    
      // Returns the inferred input type at index `idx` of the `node` in the
      // context.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. pkg/apis/batch/validation/validation_test.go

    			indexesString: "0,1-1,5",
    			completions:   6,
    			wantTotal:     0,
    			wantError:     errors.New(`non-increasing order, previous: 1, current: 1`),
    		},
    		"invalid due to starting with '-'": {
    			indexesString: "-1,0",
    			completions:   6,
    			wantTotal:     0,
    			wantError:     errors.New(`cannot convert string to integer for index: ""`),
    		},
    		"invalid due to ending with '-'": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    	return p.To.Target() != nil || p.As == obj.AJMP || p.As == obj.ACALL ||
    		p.As == obj.ARET || p.As == obj.ADUFFCOPY || p.As == obj.ADUFFZERO
    }
    
    // lookForJCC returns the first real instruction starting from p, if that instruction is a conditional
    // jump. Otherwise, nil is returned.
    func lookForJCC(p *obj.Prog) *obj.Prog {
    	// Skip any PCDATA, FUNCDATA or NOP instructions
    	var q *obj.Prog
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top