Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for set_kind (0.24 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    			CompilationResults := f.(*filter).compilationResults
    			require.Equal(t, len(validations), len(CompilationResults))
    
    			versionedAttr, err := admission.NewVersionedAttributes(tc.attributes, tc.attributes.GetKind(), newObjectInterfacesForTest())
    			if err != nil {
    				t.Fatalf("unexpected error on conversion: %v", err)
    			}
    
    			optionalVars := OptionalVariableBindings{VersionedParams: tc.params, Authorizer: tc.authorizer}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/LoggingDeprecatedFeatureHandler.java

                @Override
                public void execute(InternalProblemSpec builder) {
                    InternalProblemSpec problemSpec = builder
                        // usage.getKind() could be be part of the problem ID, however it provides hints on the problem provenance which should be modeled differently, maybe as location data.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/DefaultTypeMetadataStore.java

        }
    
        private static String calculateDisplayName(Collection<? extends PropertyAnnotationHandler> annotationHandlers) {
            return annotationHandlers.stream()
                .map(PropertyAnnotationHandler::getKind)
                .anyMatch(Predicate.isEqual(PropertyAnnotationHandler.Kind.OUTPUT))
                ? "an input or output annotation"
                : "an input annotation";
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ExceptionPlaceholder.java

                            NestedExceptionPlaceholder placeholder = (NestedExceptionPlaceholder) obj;
                            int index = placeholder.getIndex();
                            switch (placeholder.getKind()) {
                                case cause:
                                    return causes.get(index);
                                case suppressed:
                                    return suppressed.get(index);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf_test.go

    	}
    
    	symbols, err := elfFile.DynamicSymbols()
    	if err != nil {
    		t.Fatalf("failed to get dynamic symbols: %v", err)
    	}
    
    	var numLocalSymbols uint32
    	for i, s := range symbols {
    		if elf.ST_BIND(s.Info) != elf.STB_LOCAL {
    			numLocalSymbols = uint32(i + 1)
    			break
    		}
    	}
    
    	if section.Info != numLocalSymbols {
    		t.Fatalf("Unexpected sh info, want greater than 0, got: %d", section.Info)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

            }
            return result;
        }
    
        private static DefaultAccessRule createAccessRule(AccessRule accessRule) {
            int kindCode;
            String kind = accessRule.getKind();
            switch (kind) {
                case "accessible":
                case "0":
                    kindCode = 0;
                    break;
                case "nonaccessible":
                case "1":
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. src/syscall/exec_linux.go

    	stackSize  uint64 // Size of stack
    	tls        uint64 // Location of new TLS
    	setTID     uint64 // Pointer to a pid_t array (since Linux 5.5)
    	setTIDSize uint64 // Number of elements in set_tid (since Linux 5.5)
    	cgroup     uint64 // File descriptor for target cgroup of child (since Linux 5.7)
    }
    
    // forkAndExecInChild1 implements the body of forkAndExecInChild up to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{1135, "", ""},
    	{1136, "EDC8136I", "File is not a STREAM."},
    	{1137, "EDC8137I", "STREAMS ioctl() timeout."},
    	{1138, "EDC8138I", "No STREAMS resources."},
    	{1139, "EDC8139I", "The message identified by set_id and msg_id is not in the message catalog."},
    	{1140, "EDC8140I", "Bad message."},
    	{1141, "EDC8141I", "Identifier removed."},
    	{1142, "", ""},
    	{1143, "", ""},
    	{1144, "EDC8144I", "The link has been severed."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  9. pkg/kube/client.go

    		DryRun:       getDryRun(dryRun),
    		Force:        &force,
    		FieldManager: "istio-ci",
    	})
    	// If we are changing CRDs, invalidate the discovery client so future calls will not fail
    	if !dryRun && obj.GetKind() == gvk.CustomResourceDefinition.Kind {
    		c.InvalidateDiscovery()
    	}
    
    	return err
    }
    
    func (c *client) deleteYAMLFile(namespace string, dryRun bool, file string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  10. src/debug/elf/file.go

    	sym, str, err := f.getSymbols(SHT_DYNSYM)
    	if err != nil {
    		return nil, err
    	}
    	f.gnuVersionInit(str)
    	var all []ImportedSymbol
    	for i, s := range sym {
    		if ST_BIND(s.Info) == STB_GLOBAL && s.Section == SHN_UNDEF {
    			all = append(all, ImportedSymbol{Name: s.Name})
    			sym := &all[len(all)-1]
    			sym.Library, sym.Version = f.gnuVersion(i)
    		}
    	}
    	return all, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top