Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for anotherOk (0.26 sec)

  1. pkg/scheduler/schedule_one_test.go

    			}
    			createPodIndex++
    		}
    	}
    
    	// Following we start 2 goroutines asynchronously to detect potential racing issues:
    	// 1) One is responsible for deleting several nodes in each round;
    	// 2) Another is creating several pods in each round to trigger scheduling;
    	// Those two goroutines will stop until ctx.Done() is called, which means all waiting pods are scheduled at least once.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //
    // To build a file only when using cgo, and only on Linux and OS X:
    //
    //	//go:build cgo && (linux || darwin)
    //
    // Such a file is usually paired with another file implementing the
    // default functionality for other systems, which in this case would
    // carry the constraint:
    //
    //	//go:build !(cgo && (linux || darwin))
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    	Bad1
    }
    </pre>
    
    <h3 id="Map_types">Map types</h3>
    
    <p>
    A map is an unordered group of elements of one type, called the
    element type, indexed by a set of unique <i>keys</i> of another type,
    called the key type.
    The value of an uninitialized map is <code>nil</code>.
    </p>
    
    <pre class="ebnf">
    MapType     = "map" "[" KeyType "]" ElementType .
    KeyType     = Type .
    </pre>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

          {cond_input, "condition input"},
          {body_input, "body input"},
      }};
    
      // A pair of type lists should be cast compatible with each other if one is
      // converted to the another for a function call or assignment or there is a
      // common source of inputs for both. Therefore, the While op requires the
      // following pairs of type lists to be cast compatible for the tensor_cast
      // operation:
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

              if (!cast_op) return false;
              tl_element_shape.replaceAllUsesWith(cast_op->getResult(0));
            }
            continue;
          }
          // Ignore ops that just consume a TensorList and do not output another
          // TensorList.
          if (isa<TensorListStackOp, TensorListGatherOp, TensorListConcatV2Op,
                  TensorListLengthOp, TensorListGetItemOp>(use.getOwner()))
            continue;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            output.count("Transformed") == 0
        }
    
        def "transform is supplied with a different output directory when parameters change"() {
            given:
            // Use another script to define the value, so that transform implementation does not change when the value is changed
            def otherScript = file("other.gradle")
            otherScript.text = "ext.value = 123"
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  7. fastapi/routing.py

    
    class APIRouter(routing.Router):
        """
        `APIRouter` class, used to group *path operations*, for example to structure
        an app in multiple files. It would then be included in the `FastAPI` app, or
        in another `APIRouter` (ultimately included in the app).
    
        Read more about it in the
        [FastAPI docs for Bigger Applications - Multiple Files](https://fastapi.tiangolo.com/tutorial/bigger-applications/).
    
        ## Example
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.5.md

    * Fix for kube-proxy healthcheck handling an update that simultaneously removes one port and adds another. ([#44365](https://github.com/kubernetes/kubernetes/pull/44365), [@MrHohn](https://github.com/MrHohn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  9. src/database/sql/sql_test.go

    		{age: 2, name: "Bob"},
    		{age: 3, name: "Chris"},
    	}
    	if !slices.Equal(got1, want1) {
    		t.Errorf("mismatch.\n got1: %#v\nwant: %#v", got1, want1)
    	}
    
    	if !rows.NextResultSet() {
    		t.Errorf("expected another result set")
    	}
    
    	got2 := []row2{}
    	for rows.Next() {
    		var r row2
    		err = rows.Scan(&r.name)
    		if err != nil {
    			t.Fatalf("Scan: %v", err)
    		}
    		got2 = append(got2, r)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    	}
    
    	// If the error is an ImportPathError, and the last path on the stack appears
    	// in the error message, omit that path from the stack to avoid repetition.
    	// If an ImportPathError wraps another ImportPathError that matches the
    	// last path on the stack, we don't omit the path. An error like
    	// "package A imports B: error loading C caused by B" would not be clearer
    	// if "imports B" were omitted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top