Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 99 for checkSeq (0.17 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // validations is "spec.validations[0].expression"
      optional string fieldRef = 2;
    
      // The content of type checking information in a human-readable form.
      // Each line of the warning contains the type that the expression is checked
      // against, followed by the type check error from the compiler.
      optional string warning = 3;
    }
    
    // MatchCondition represents a condition which must by fulfilled for a request to be sent to a webhook.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      std::string GetURIForPath(StringPiece path) {
        const std::string translated_name =
            tensorflow::io::JoinPath(root_dir_, path);
        // We have already checked `GetParam().empty()` in
        // `ModularFileSystemTest()`. root_dir_ should contain `GetParam() + "://"`
        // if it isn't empty.
        return translated_name;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  3. src/runtime/mgcmark.go

    	work.assistQueue.q.pushBack(gp)
    
    	// Recheck for background credit now that this G is in
    	// the queue, but can still back out. This avoids a
    	// race in case background marking has flushed more
    	// credit since we checked above.
    	if gcController.bgScanCredit.Load() > 0 {
    		work.assistQueue.q = oldList
    		if oldList.tail != 0 {
    			oldList.tail.ptr().schedlink.set(nil)
    		}
    		unlock(&work.assistQueue.lock)
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    If they do, verify that the signature that Gradle downloaded matches the one published.
    
    If you have <<#sec:manual-checking-dependency,checked that the dependency is _not_ compromised>> and that it's "only" the signature which is wrong, you should declare an _artifact level key exclusion_:
    
    [source,xml]
    ----
       <components>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	ReturnDeletedObject bool
    	// ShouldDeleteDuringUpdate is an optional function to determine whether
    	// an update from existing to obj should result in a delete.
    	// If specified, this is checked in addition to standard finalizer,
    	// deletionTimestamp, and deletionGracePeriodSeconds checks.
    	ShouldDeleteDuringUpdate func(ctx context.Context, key string, obj, existing runtime.Object) bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  6. gradle/verification-metadata.xml

             <trusted-key id="1616273079FE63E31C938F10F0DF21D1D0A3C384" group="com.google.inject" name="guice" version="4.2.3"/>
             <trusted-key id="19BEAB2D799C020F17C69126B16698A4ADF4D638" group="org.checkerframework" name="checker-qual"/>
             <trusted-key id="1BD97A6A154E7810EE0BC832E2F38302C8075E3D">
                <trusting group="net.rubygrapefruit"/>
                <trusting group="org.gradle"/>
                <trusting group="org.gradle.exemplar"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  7. src/html/template/exec_test.go

    	{"bug7a", "{{3 2}}", "", tVal, false},
    	{"bug7b", "{{$x := 1}}{{$x 2}}", "", tVal, false},
    	{"bug7c", "{{$x := 1}}{{3 | $x}}", "", tVal, false},
    	// Pipelined arg was not being type-checked.
    	{"bug8a", "{{3|oneArg}}", "", tVal, false},
    	{"bug8b", "{{4|dddArg 3}}", "", tVal, false},
    	// A bug was introduced that broke map lookups for lower-case names.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    * Open an issue on the link:{gradle-issues}[Gradle issue tracker], including as much detail as you can.
    
    From version 5.1 onwards, the log directory is cleaned up automatically.
    It is checked periodically (at most every 24 hours) and log files are deleted if they haven’t been used for 7 days.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. src/regexp/syntax/parse.go

    				if hi > rhi {
    					r[n-i+1] = hi
    				}
    				return r
    			}
    		}
    	}
    
    	return append(r, lo, hi)
    }
    
    const (
    	// minimum and maximum runes involved in folding.
    	// checked during test.
    	minFold = 0x0041
    	maxFold = 0x1e943
    )
    
    // appendFoldedRange returns the result of appending the range lo-hi
    // and its case folding-equivalent runes to the class r.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	FieldRef string `json:"fieldRef" protobuf:"bytes,2,opt,name=fieldRef"`
    	// The content of type checking information in a human-readable form.
    	// Each line of the warning contains the type that the expression is checked
    	// against, followed by the type check error from the compiler.
    	Warning string `json:"warning" protobuf:"bytes,3,opt,name=warning"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top