Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for beginning (0.16 sec)

  1. pilot/pkg/model/push_context.go

    	}
    }
    
    type serviceAccountKey struct {
    	hostname  host.Name
    	namespace string
    }
    
    // PushContext tracks the status of a push - metrics and errors.
    // Metrics are reset after a push - at the beginning all
    // values are zero, and when push completes the status is reset.
    // The struct is exposed in a debug endpoint - fields public to allow
    // easy serialization as json.
    type PushContext struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    		// If we are outside of the 'std' module, resolve imports from within 'std'
    		// to the vendor directory.
    		//
    		// Do the same for importers beginning with the prefix 'vendor/' even if we
    		// are *inside* of the 'std' module: the 'vendor/' packages that resolve
    		// globally from GOROOT/src/vendor (and are listed as part of 'go list std')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    	}
    
    	if ctxt.IsELF && ctxt.DynlinkingGo() {
    		// Do not let the host linker generate COPY relocations. These
    		// can move symbols out of sections that rely on stable offsets
    		// from the beginning of the section (like sym.STYPE).
    		argv = append(argv, "-Wl,-z,nocopyreloc")
    
    		if buildcfg.GOOS == "android" {
    			// Use lld to avoid errors from default linker (issue #38838)
    			altLinker = "lld"
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. src/os/os_test.go

    			t.Fatalf("different name i=%d n1=%s n2=%s\n", i, n1, n2)
    		}
    	}
    }
    
    func TestReaddirSmallSeek(t *testing.T) {
    	// See issue 37161. Read only one entry from a directory,
    	// seek to the beginning, and read again. We should not see
    	// duplicate entries.
    	t.Parallel()
    
    	wd, err := Getwd()
    	if err != nil {
    		t.Fatal(err)
    	}
    	df, err := Open(filepath.Join(wd, "testdata", "issue37161"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    _Move transposes pass._
    
    
    #### Options
    ```
    -fold-transpose-in-ops : Whether to fold transposes in ops which can support folding.
    -direction             : Move transposes to the beginning or the end of the block where they are defined.
    ```
    ### `-tf-name-anonymous-iterators`
    
    _Converts anonymous iterators to named iterators_
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top