Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 323 for seem (0.24 sec)

  1. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			expectedRequeueDuration:    1*time.Hour + nextScheduleDelta,
    			expectUpdateStatus:         true,
    			jobPresentInCJActiveStatus: true,
    		},
    
    		// Tests for time skews
    		// the controller sees job is created, takes no actions
    		"this ran but done, time drifted back, F": {
    			concurrencyPolicy:       "Forbid",
    			schedule:                onTheHour,
    			deadline:                noDead,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  2. fastapi/param_functions.py

            Doc(
                """
                OAuth2 scopes required for the *path operation* that uses this Security
                dependency.
    
                The term "scope" comes from the OAuth2 specification, it seems to be
                intentionaly vague and interpretable. It normally refers to permissions,
                in cases to roles.
    
                These scopes are integrated with OpenAPI (and the API docs at `/docs`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    The test binary also accepts flags that control execution of the test; these
    flags are also accessible by 'go test'. See 'go help testflag' for details.
    
    For more about build flags, see 'go help build'.
    For more about specifying packages, see 'go help packages'.
    
    See also: go build, go vet.
    `,
    }
    
    var HelpTestflag = &base.Command{
    	UsageLine: "testflag",
    	Short:     "testing flags",
    	Long: `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	}
    
    	r.customStorageLock.Lock()
    	defer r.customStorageLock.Unlock()
    
    	// Get the up-to-date CRD when we have the lock, to avoid racing with updateCustomResourceDefinition.
    	// If updateCustomResourceDefinition sees an update and happens later, the storage will be deleted and
    	// we will re-create the updated storage on demand. If updateCustomResourceDefinition happens before,
    	// we make sure that we observe the same up-to-date CRD.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

            return emitError(base_loc,
                             "invalid model_control_dependencies metadata"),
                   nullptr;
          }
          continue;
        }
    
        // Skip already seen attributes. Ideally there should be no duplicates here.
        if (!seen_attr.try_emplace(metadata->name).second) continue;
    
        // check if the model is serialized using stablehlo constant tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/xcoff.go

    // - a C_HIDEXT which will be a csect containing all of its functions
    // It needs several parameters to create .csect symbols such as its entry point and its section number.
    //
    // Currently, a new file is in fact a new package. It seems to be OK, but it might change
    // in the future.
    func (f *xcoffFile) writeSymbolNewFile(ctxt *Link, name string, firstEntry uint64, extnum int16) {
    	ldr := ctxt.loader
    	/* C_FILE */
    	s := &XcoffSymEnt64{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  7. cmd/batch-handlers.go

    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bytes"
    	"context"
    	"encoding/binary"
    	"encoding/json"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  8. tests/migrate_test.go

    		// In SQLServer, If an index or constraint depends on the column,
    		// this column will not be able to run ALTER
    		// see https://stackoverflow.com/questions/19460912/the-object-df-is-dependent-on-column-changing-int-to-double/19461205#19461205
    		// may we need to create another PR to fix it, see https://github.com/go-gorm/sqlserver/pull/106
    		tests = []TestCase{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  9. src/net/http/fs_test.go

    			content = tt.content
    		}
    		for _, method := range []string{"GET", "HEAD"} {
    			//restore content in case it is consumed by previous method
    			if content, ok := content.(*strings.Reader); ok {
    				content.Seek(0, io.SeekStart)
    			}
    
    			servec <- serveParam{
    				name:        filepath.Base(tt.file),
    				content:     content,
    				modtime:     tt.modtime,
    				etag:        tt.serveETag,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  10. src/time/format.go

    	}
    	buf = append(buf, ')')
    	return string(buf)
    }
    
    // Format returns a textual representation of the time value formatted according
    // to the layout defined by the argument. See the documentation for the
    // constant called [Layout] to see how to represent the layout format.
    //
    // The executable example for [Time.Format] demonstrates the working
    // of the layout string in detail and is a good reference.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top