Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,119 for kindOf (0.17 sec)

  1. prow/integ-suite-kind.sh

    # LoadBalancer in Kind is supported using metallb
    export TEST_ENV=kind-metallb
    
    # See https://kind.sigs.k8s.io/docs/user/quick-start/#loading-an-image-into-your-cluster
    export PULL_POLICY=IfNotPresent
    
    # We run a local-registry in a docker container that KinD nodes pull from
    # These values are must match what is in config/trustworthy-jwt.yaml
    export KIND_REGISTRY_NAME="kind-registry"
    export KIND_REGISTRY_PORT="5000"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Failure.java

     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * The base of all kinds of failure results.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbolBase.kt

                return PsiEquivalenceUtil.areElementsEquivalent(psiClass, otherPsiClass)
            }
            return symbolEquals(other)
        }
    
        /**
         * All kinds of non-local named class or object symbols must have the same kind of hash code. The class ID is the best option, as the
         * same class/object may be represented by multiple different symbols.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/convert_attr.h

    // function definition is imported.
    absl::StatusOr<mlir::Attribute> ConvertNonFuncAttributeValue(
        const AttrValue& value, mlir::Builder* builder);
    
    // Converts all kinds of AttrValue proto into an MLIR attribute.
    absl::StatusOr<mlir::Attribute> ConvertAttributeValue(const AttrValue& value,
                                                          mlir::Builder* builder);
    
    }  // namespace tensorflow
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. releasenotes/notes/49700.yaml

    issue:
    - 49436
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. src/reflect/badlinkname.go

    func badlinkname_rtype_IsVariadic(*rtype) bool
    
    //go:linkname badlinkname_rtype_Key reflect.(*rtype).Key
    func badlinkname_rtype_Key(*rtype) Type
    
    //go:linkname badlinkname_rtype_Kind reflect.(*rtype).Kind
    func badlinkname_rtype_Kind(*rtype) Kind
    
    //go:linkname badlinkname_rtype_Len reflect.(*rtype).Len
    func badlinkname_rtype_Len(*rtype) int
    
    //go:linkname badlinkname_rtype_Method reflect.(*rtype).Method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractSessionInvalidationTest.kt

     * of [modificationEventKind]. This allows [AbstractSessionInvalidationTest] to check all modification event kinds with the same original
     * test data.
     *
     * [AbstractSessionInvalidationTest] is a base class for invalidation tests of `KaSession` and `LLFirSession`, which share the test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/crd/conversion.go

    			status = &s
    		}
    	}
    	namespace := cfg.Namespace
    	if namespace == "" {
    		namespace = metav1.NamespaceDefault
    	}
    	return &IstioKind{
    		TypeMeta: metav1.TypeMeta{
    			Kind:       cfg.GroupVersionKind.Kind,
    			APIVersion: cfg.GroupVersionKind.Group + "/" + cfg.GroupVersionKind.Version,
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name:              cfg.Name,
    			Namespace:         namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. src/log/slog/value_test.go

    		if !got.Equal(test.want) {
    			t.Errorf("%v (%[1]T): got %v (kind %s), want %v (kind %s)",
    				test.in, got, got.Kind(), test.want, test.want.Kind())
    		}
    	}
    }
    
    func TestValueAny(t *testing.T) {
    	for _, want := range []any{
    		nil,
    		LevelDebug + 100,
    		time.UTC, // time.Locations treated specially...
    		KindBool, // ...as are Kinds
    		[]Attr{Int("a", 1)},
    		int64(2),
    		uint64(3),
    		true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/sym/symkind.go

    	objabi.SCOVERAGE_COUNTER:       SCOVERAGE_COUNTER,
    	objabi.SCOVERAGE_AUXVAR:        SCOVERAGE_AUXVAR,
    	objabi.SSEHUNWINDINFO:          SSEHUNWINDINFO,
    }
    
    // ReadOnly are the symbol kinds that form read-only sections. In some
    // cases, if they will require relocations, they are transformed into
    // rel-ro sections using relROMap.
    var ReadOnly = []SymKind{
    	STYPE,
    	SSTRING,
    	SGOSTRING,
    	SGOFUNC,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top