Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of about 10,000 for internally (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

                  << "should have tf_saved_model.initializer_type attribute.";
            }
            continue;
          }
    
          return symbol_use.getUser()
              ->emitError("exported function cannot be internally referenced")
              .attachNote(func.getLoc())
              .append("references this exported function");
        }
      }
      return success();
    }
    
    LogicalResult VerifyExportedFunc(func::FuncOp func) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/helpers_linux_test.go

    				t.Errorf("unexpected result for HugePageLimits(), expected: %v, actual: %v", testcase.expected, resultValue)
    			}
    
    			// ensure ResourceConfigForPod uses HugePageLimits correctly internally
    			p := v1.Pod{
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{
    							Resources: v1.ResourceRequirements{
    								Requests: resourceList,
    							},
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. test/typeparam/list2.go

    import (
    	"fmt"
    	"strconv"
    )
    
    // _Element is an element of a linked list.
    type _Element[T any] struct {
    	// Next and previous pointers in the doubly-linked list of elements.
    	// To simplify the implementation, internally a list l is implemented
    	// as a ring, such that &l.root is both the next element of the last
    	// list element (l.Back()) and the previous element of the first list
    	// element (l.Front()).
    	next, prev *_Element[T]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/response-model.md

    ### FastAPI Data Filtering
    
    Now, for FastAPI, it will see the return type and make sure that what you return includes **only** the fields that are declared in the type.
    
    FastAPI does several things internally with Pydantic to make sure that those same rules of class inheritance are not used for the returned data filtering, otherwise you could end up returning much more data than what you expected.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    	PolicyFile string
    
    	// Plugin options
    	LogOptions     AuditLogOptions
    	WebhookOptions AuditWebhookOptions
    }
    
    const (
    	// ModeBatch indicates that the audit backend should buffer audit events
    	// internally, sending batch updates either once a certain number of
    	// events have been received or a certain amount of time has passed.
    	ModeBatch = "batch"
    	// ModeBlocking causes the audit backend to block on every attempt to process
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  6. pkg/scheduler/schedule_one.go

    	if sched.SchedulingQueue != nil {
    		sched.SchedulingQueue.DeleteNominatedPodIfExists(assumed)
    	}
    
    	return nil
    }
    
    // bind binds a pod to a given node defined in a binding object.
    // The precedence for binding is: (1) extenders and (2) framework plugins.
    // We expect this to run asynchronously, so we handle binding metrics internally.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/bigger-applications.md

    * The same with `app/routers/users.py`, it's another submodule: `app.routers.users`.
    * There's also a subdirectory `app/internal/` with another file `__init__.py`, so it's another "Python subpackage": `app.internal`.
    * And the file `app/internal/admin.py` is another submodule: `app.internal.admin`.
    
    <img src="/img/tutorial/bigger-applications/package.svg">
    
    The same file structure with comments:
    
    ```
    .
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. docs/bucket/replication/README.md

    ```
    mc replicate add myminio/srcbucket --priority 1 --remote-bucket https://accessKey:secretKey@replica-endpoint:9000/destbucket 
    Replication configuration applied successfully to myminio/srcbucket.
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 24 23:46:33 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_client.go

    	closer io.Closer,
    	err error,
    )
    
    type nodeV1AccessModeMapper func(am api.PersistentVolumeAccessMode) csipbv1.VolumeCapability_AccessMode_Mode
    
    // newV1NodeClient creates a new NodeClient with the internally used gRPC
    // connection set up. It also returns a closer which must be called to close
    // the gRPC connection when the NodeClient is not used anymore.
    // This is the default implementation for the nodeV1ClientCreator, used in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 20 10:15:36 UTC 2022
    - 22.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AbstractServiceTest.java

        service.addListener(new RecordingListener(service), directExecutor());
        Thread thread =
            new Thread() {
              @Override
              public void run() {
                // Internally stopAsync() grabs a lock, this could be any such method on
                // AbstractService.
                service.stopAsync();
              }
            };
        thread.start();
        thread.join(LONG_TIMEOUT_MILLIS);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.3K bytes
    - Viewed (0)
Back to top