Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,828 for okdown (0.15 sec)

  1. src/cmd/compile/internal/ir/symtab.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ir
    
    import (
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    )
    
    // Syms holds known symbols.
    var Syms symsStruct
    
    type symsStruct struct {
    	AssertE2I         *obj.LSym
    	AssertE2I2        *obj.LSym
    	AssertI2I         *obj.LSym
    	AssertI2I2        *obj.LSym
    	Asanread          *obj.LSym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 17:02:26 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/software/resources/src/main/java/org/gradle/api/resources/ResourceException.java

            super(message, cause);
            this.location = location;
        }
    
        /**
         * Returns the location of the resource, if known.
         *
         * @return The location, or null if not known.
         */
        @Nullable
        public URI getLocation() {
            return location;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/extension/wasmplugin_test.go

    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    	"google.golang.org/protobuf/types/known/anypb"
    	"google.golang.org/protobuf/types/known/durationpb"
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	extensions "istio.io/api/extensions/v1alpha1"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    )
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pkg/kubelet/sysctl/allowlist.go

    		if ns == utilsysctl.UnknownNamespace {
    			return nil, fmt.Errorf("the sysctls %q are not known to be namespaced", sysctlOrPrefix)
    		}
    		if prefixed {
    			w.prefixes[sysctlOrPrefix] = ns
    		} else {
    			w.sysctls[sysctlOrPrefix] = ns
    		}
    	}
    	return w, nil
    }
    
    // validateSysctl checks that a sysctl is allowlisted because it is known
    // to be namespaced by the Linux kernel. Note that being allowlisted is required, but not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 22:58:54 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/syslist.go

    // license that can be found in the LICENSE file.
    
    // This file is a lightly modified copy go/build/syslist_test.go.
    
    package modindex
    
    // knownOS is the list of past, present, and future known GOOS values.
    // Do not remove from this list, as it is used for filename matching.
    // If you add an entry to this list, look at unixOS, below.
    var knownOS = map[string]bool{
    	"aix":       true,
    	"android":   true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 04 01:45:58 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. pkg/config/schema/codegen/templates/gvk.go.tmpl

        {{- end }}
    {{- end }}
    	}
    
    	return schema.GroupVersionResource{}, false
    }
    
    // MustToGVR converts a GVK to a GVR, and panics if it cannot be converted
    // Warning: this is only safe for known types; do not call on arbitrary GVKs
    func MustToGVR(g config.GroupVersionKind) schema.GroupVersionResource {
    	r, ok := ToGVR(g)
    	if !ok {
    		panic("unknown kind: " + g.String())
    	}
    	return r
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 03:54:51 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/Traverser.java

          };
        }
    
        final Iterator<N> breadthFirst(Iterator<? extends N> startNodes) {
          return topDown(startNodes, InsertionOrder.BACK);
        }
    
        final Iterator<N> preOrder(Iterator<? extends N> startNodes) {
          return topDown(startNodes, InsertionOrder.FRONT);
        }
    
        /**
         * In top-down traversal, an ancestor node is always traversed before any of its descendant
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/Traverser.java

          };
        }
    
        final Iterator<N> breadthFirst(Iterator<? extends N> startNodes) {
          return topDown(startNodes, InsertionOrder.BACK);
        }
    
        final Iterator<N> preOrder(Iterator<? extends N> startNodes) {
          return topDown(startNodes, InsertionOrder.FRONT);
        }
    
        /**
         * In top-down traversal, an ancestor node is always traversed before any of its descendant
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/path/ModelPathTranslator.java

    /**
     * Resolves relative paths of a model against a specific base directory.
     *
     */
    public interface ModelPathTranslator {
    
        /**
         * Resolves the well-known paths of the specified model against the given base directory. Paths within plugin
         * configuration are not processed.
         *
         * @param model The model whose paths should be resolved, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/unicode/script_test.go

    	notTested := make(map[string]bool)
    	for k := range Categories {
    		notTested[k] = true
    	}
    	for _, test := range inCategoryTest {
    		if _, ok := Categories[test.script]; !ok {
    			t.Fatal(test.script, "not a known category")
    		}
    		if !Is(Categories[test.script], test.rune) {
    			t.Errorf("IsCategory(%U, %s) = false, want true", test.rune, test.script)
    		}
    		delete(notTested, test.script)
    	}
    	for k := range notTested {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 14:09:01 UTC 2019
    - 2.9K bytes
    - Viewed (0)
Back to top