Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for tracks (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

    // RUN: tf-opt -split-input-file -tf-test-side-effect-analysis -verify-diagnostics %s | FileCheck %s
    
    // Tests that the pass tracks control dependencies for reads/writes on the same
    // resource.
    
    // CHECK-LABEL: func @non_aliasing_reads_writes
    func.func @non_aliasing_reads_writes(
    // expected-remark@above {{ID: 13}}
      %arg0: tensor<*x!tf_type.resource<tensor<32xf32>>>,
      %arg1: tensor<*x!tf_type.resource<tensor<32xf32>>>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    	if err != nil {
    		// We want all cleanup tasks to be run even if one of them failed. So
    		// we just log an error here and continue other cleanup tasks.
    		// This also applies to the other clean up tasks.
    		klog.ErrorS(err, "Failed cleaning up orphaned pod directories")
    	}
    
    	// Remove any orphaned mirror pods (mirror pods are tracked by name via the
    	// pod worker)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	// Manage user namespaces
    	usernsManager *userns.UsernsManager
    
    	// Mutex to serialize new pod admission and existing pod resizing
    	podResizeMutex sync.Mutex
    
    	// OpenTelemetry Tracer
    	tracer trace.Tracer
    
    	// Track node startup latencies
    	nodeStartupLatencyTracker util.NodeStartupLatencyTracker
    }
    
    // ListPodStats is delegated to StatsProvider, which implements stats.Provider interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/writing-tasks-1.png

    writing-tasks-1.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 23:21:15 UTC 2024
    - 136.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/writing-tasks-3.png

    writing-tasks-3.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 212.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/writing-tasks-5.png

    writing-tasks-5.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 101.1K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    		},
    	}
    	if mode == http2Mode {
    		trace.TLSHandshakeStart = func() { logf("tls handshake start") }
    		trace.TLSHandshakeDone = func(s tls.ConnectionState, err error) {
    			logf("tls handshake done. ConnectionState = %v \n err = %v", s, err)
    		}
    	}
    	if noHooks {
    		// zero out all func pointers, trying to get some path to crash
    		*trace = httptrace.ClientTrace{}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    // (*response).header to the wire. In Go 1.1, the actual wire flush is
    // delayed, so we could maybe tack on a Content-Length and better
    // Content-Type after we see more (or all) of the output. To preserve
    // compatibility with Go 1, we need to be careful to track which
    // headers were live at the time of WriteHeader, so we write the same
    // ones, even if the handler modifies them (~erroneously) after the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. samples/bookinfo/src/reviews/reviews-application/src/main/webapp/index.html

      See the License for the specific language governing permissions and
      limitations under the License.
    -->
    <html>
    <body>
        <h1>Welcome to your Liberty Application</h1>
        <p>Thanks for generating this project using the app accelerator.  Please see below for some extra information on each of the technologies you chose</p>
        <!-- 
      Copyright (c) 2016 IBM Corp.
     
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 196.5K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    			ds.Close()
    		})
    	} else {
    		c.Lock()
    		fc := c.finalClosed
    		c.Unlock()
    		if !fc {
    			ds.Close()
    		}
    	}
    }
    
    // debugGetPut determines whether getConn & putConn calls' stack traces
    // are returned for more verbose crashes.
    const debugGetPut = false
    
    // putConn adds a connection to the db's free pool.
    // err is optionally the last error that occurred on this connection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top