Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 67 for creat (0.15 sec)

  1. src/runtime/proc.go

    		if set_crosscall2 == nil {
    			throw("set_crosscall2 missing")
    		}
    		set_crosscall2()
    
    		// Start the template thread in case we enter Go from
    		// a C-created thread and need to create a new thread.
    		startTemplateThread()
    		cgocall(_cgo_notify_runtime_init_done, nil)
    	}
    
    	// Run the initializing tasks. Depending on build mode this
    	// list can arrive a few different ways, but it will always
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    // Returns whether the current op is not supported by the TF Lite runtime.
    static bool IsUnsupportedFlexOp(const std::string& op_name) {
      return op_name == "PartitionedCall" || op_name == "StatefulPartitionedCall";
    }
    
    // Create description of operation that could not be converted.
    static std::string GetOpDescriptionForDebug(Operation* inst) {
      const int kLargeElementsAttr = 16;
      std::string op_str;
      llvm::raw_string_ostream os(op_str);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. src/reflect/value.go

    				}
    				ret[i] = Value{tv, regArgs.Ptrs[steps[0].ireg], flag(tv.Kind())}
    				continue
    			}
    
    			// All that's left is values passed in registers that we need to
    			// create space for and copy values back into.
    			//
    			// TODO(mknyszek): We make a new allocation for each register-allocated
    			// value, but previously we could always point into the heap-allocated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. cmd/object-handlers.go

    			return
    		}
    
    		rs, rangeErr = parseRequestRangeSpec(rangeHeader)
    		// Handle only errInvalidRange. Ignore other
    		// parse error and treat it as regular Get
    		// request like Amazon S3.
    		if errors.Is(rangeErr, errInvalidRange) {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidRange), r.URL)
    			return
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    }
    
    // A NamedArg is a named argument. NamedArg values may be used as
    // arguments to [DB.Query] or [DB.Exec] and bind to the corresponding named
    // parameter in the SQL statement.
    //
    // For a more concise way to create NamedArg values, see
    // the [Named] function.
    type NamedArg struct {
    	_NamedFieldsRequired struct{}
    
    	// Name is the name of the parameter placeholder.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		expectedMapAfterUpdate map[string]*framework.QueuedPodInfo
    		podsToDelete           []*v1.Pod
    		expectedMapAfterDelete map[string]*framework.QueuedPodInfo
    	}{
    		{
    			name:      "create, update, delete subset of pods",
    			podsToAdd: []*v1.Pod{pods[0], pods[1], pods[2], pods[3]},
    			expectedMapAfterAdd: map[string]*framework.QueuedPodInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    				DNSNames:     []string{"localhost"},
    				ExtKeyUsage:  tc.rootEKUs,
    			}
    			rootDER, err := CreateCertificate(rand.Reader, tmpl, tmpl, k.Public(), k)
    			if err != nil {
    				t.Fatalf("failed to create certificate: %s", err)
    			}
    			root, err := ParseCertificate(rootDER)
    			if err != nil {
    				t.Fatalf("failed to parse certificate: %s", err)
    			}
    			roots := NewCertPool()
    			roots.AddCert(root)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

            buildFile << """
                configurations.create('conf')
                dependencies {
                  conf project(':A')
                  conf project(':B')
                }
    
                project(':B') {
                    configurations.create('default')
                    dependencies.add("default", project(':C'))
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    	}
    
    	// Determine canonical package path and directory.
    	// For a local import the identifier is the pseudo-import path
    	// we create from the full directory to the package.
    	// Otherwise it is the usual import path.
    	// For vendored imports, it is the expanded form.
    	//
    	// Note that when modules are enabled, local import paths are normally
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. pkg/api/pod/util_test.go

    }
    
    func TestValidateTopologySpreadConstraintLabelSelectorOption(t *testing.T) {
    	testCases := []struct {
    		name       string
    		oldPodSpec *api.PodSpec
    		wantOption bool
    	}{
    		{
    			name:       "Create",
    			wantOption: false,
    		},
    		{
    			name: "UpdateInvalidLabelSelector",
    			oldPodSpec: &api.PodSpec{
    				TopologySpreadConstraints: []api.TopologySpreadConstraint{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top