Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for recur1 (0.48 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-uint8-return.pbtxt

    versions {
      producer: 29
      min_consumer: 12
    }
    
    # CHECK: func @main
    # CHECK: "tf.PartitionedCall"()
    # CHECK-SAME: f = @[[FUNCTION:[A-Za-z0-9_]*]]
    # CHECK: func private @[[FUNCTION]]() -> tensor<*xui8>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. releasenotes/notes/48047-probe-return-body.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 10:47:14 UTC 2023
    - 234 bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.DefaultTask.doLast(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (DefaultTask.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cache_test.go

    		t.Errorf("Expected null, false, got %#v, %v", result, ok)
    	}
    
    	record1 := &cacheRecord{resp: &authenticator.Response{User: &user.DefaultInfo{Name: "bob"}}}
    	record2 := &cacheRecord{resp: &authenticator.Response{User: &user.DefaultInfo{Name: "alice"}}}
    
    	// when empty, record is stored
    	cache.set("foo", record1, time.Hour)
    	if result, ok := cache.get("foo"); !ok || result != record1 {
    		t.Errorf("Expected %#v, true, got %#v, %v", record1, result, ok)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  5. src/encoding/xml/read.go

    		// Grow slice.
    		n := val.Len()
    		val.Grow(1)
    		val.SetLen(n + 1)
    
    		// Recur to read element into slice.
    		if err := d.unmarshalAttr(val.Index(n), attr); err != nil {
    			val.SetLen(n)
    			return err
    		}
    		return nil
    	}
    
    	if val.Type() == attrType {
    		val.Set(reflect.ValueOf(attr))
    		return nil
    	}
    
    	return copyValue(val, []byte(attr.Value))
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    		if hc.version == VersionTLS13 {
    			record = append(record, payload...)
    
    			// Encrypt the actual ContentType and replace the plaintext one.
    			record = append(record, record[0])
    			record[0] = byte(recordTypeApplicationData)
    
    			n := len(payload) + 1 + c.Overhead()
    			record[3] = byte(n >> 8)
    			record[4] = byte(n)
    
    			record = c.Seal(record[:recordHeaderLen],
    				nonce, record[recordHeaderLen:], record[:recordHeaderLen])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/net/http/httputil/dump.go

    func (c *dumpConn) Close() error                       { return nil }
    func (c *dumpConn) LocalAddr() net.Addr                { return nil }
    func (c *dumpConn) RemoteAddr() net.Addr               { return nil }
    func (c *dumpConn) SetDeadline(t time.Time) error      { return nil }
    func (c *dumpConn) SetReadDeadline(t time.Time) error  { return nil }
    func (c *dumpConn) SetWriteDeadline(t time.Time) error { return nil }
    
    type neverEnding byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/attributes.go

    	return record.subresource
    }
    
    func (record *attributesRecord) GetOperation() Operation {
    	return record.operation
    }
    
    func (record *attributesRecord) GetOperationOptions() runtime.Object {
    	return record.options
    }
    
    func (record *attributesRecord) IsDryRun() bool {
    	return record.dryRun
    }
    
    func (record *attributesRecord) GetObject() runtime.Object {
    	return record.object
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 07 17:53:14 UTC 2019
    - 6.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-operations/src/testFixtures/groovy/org/gradle/internal/operations/TestBuildOperationRunner.java

                    return null;
                }
            };
        }
    
        private static class TestBuildOperationContext implements BuildOperationContext {
    
            private final Log.Record record;
    
            public TestBuildOperationContext(Log.Record record) {
                this.record = record;
            }
    
            @Override
            public void failed(@Nullable Throwable failure) {
                this.record.failure = failure;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:33:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/record_flags.go

    	if f == nil {
    		return
    	}
    
    	if f.Record != nil {
    		cmd.Flags().BoolVar(f.Record, "record", *f.Record, "Record current kubectl command in the resource annotation. If set to false, do not record the command. If set to true, record the command. If not set, default to updating the existing annotation value only if one already exists.")
    		cmd.Flags().MarkDeprecated("record", "--record will be removed in the future")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top