Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 884 for Positions (0.14 sec)

  1. pilot/pkg/config/file/store.go

    		return
    	}
    
    	nodeContent := yamlNode.Content
    	// Iterate content by a step of 2, because in the content array the value is in the key's next index position
    	for i := 0; i < len(nodeContent)-1; i += 2 {
    		// Two condition, i + 1 positions have no content, which means they have the format like "key: value", then build the map
    		// Or i + 1 has contents, which means "key:\n  value...", then perform one more DFS search
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package astutil
    
    // This file defines utilities for working with source positions.
    
    import (
    	"fmt"
    	"go/ast"
    	"go/token"
    	"sort"
    )
    
    // PathEnclosingInterval returns the node that encloses the source
    // interval [start, end), and all its ancestors up to the AST root.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

    // Eliminates unusued results from an operation `op` by cloning it with reduced
    // result types and doing appropriate use replacements. `results_to_eliminate`
    // is a bitvector of result positions to eliminate. If its null, then all unused
    // results of the operation will be eliminated.
    void EliminateUnusedResults(
        Operation *op, const llvm::BitVector *results_to_eliminate = nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      //   - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and
      //     non-intersecting elements in `Y` are appended, retaining their partial order.
      //   - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    	//   - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and
    	//     non-intersecting elements in `Y` are appended, retaining their partial order.
    	//   - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/Ascii.java

       * printing space backward on the same printing line. (Applicable also to display devices.)
       *
       * @since 8.0
       */
      public static final byte BS = 8;
    
      /**
       * Horizontal Tabulation ('\t'): A format effector which controls the movement of the printing
       * position to the next in a series of predetermined positions along the printing line.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  7. src/go/printer/printer_test.go

    		i2 := <-i2range
    
    		if i2.Name != i1.Name {
    			t.Errorf("got ident %s; want %s", i2.Name, i1.Name)
    		}
    
    		// here we care about the relative (line-directive adjusted) positions
    		l1 := fset.Position(i1.Pos()).Line
    		l2 := fset.Position(i2.Pos()).Line
    		if l2 != l1 {
    			t.Errorf("got line %d; want %d for %s", l2, l1, i1.Name)
    		}
    	}
    
    	if t.Failed() {
    		t.Logf("\n%s", buf.Bytes())
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. src/go/internal/gcimporter/ureader.go

    	return &reader{
    		Decoder: pr.TempDecoder(k, idx, marker),
    		p:       pr,
    	}
    }
    
    func (pr *pkgReader) retireReader(r *reader) {
    	pr.RetireDecoder(&r.Decoder)
    }
    
    // @@@ Positions
    
    func (r *reader) pos() token.Pos {
    	r.Sync(pkgbits.SyncPos)
    	if !r.Bool() {
    		return token.NoPos
    	}
    
    	// TODO(mdempsky): Delta encoding.
    	posBase := r.posBase()
    	line := r.Uint()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/value.go

    // The supplied position is used as the position of the new value.
    // Because this is used for rematerialization, check for case that (rematerialized)
    // input to value with position 'pos' carried a statement mark, and that the supplied
    // position (of the instruction using the rematerialized value) is not marked, and
    // preserve that mark if its line matches the supplied position.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    	// Base, Script, and Region methods. Once the transition is fully completed
    	// the ID can be stripped from the name.
    
    	LangID   Language
    	RegionID Region
    	// TODO: we will soon run out of positions for ScriptID. Idea: instead of
    	// storing lang, region, and ScriptID codes, store only the compact index and
    	// have a lookup table from this code to its expansion. This greatly speeds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
Back to top