Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,694 for findIn (0.11 sec)

  1. src/runtime/cgo/gcc_android.c

    // From https://android.googlesource.com/platform/bionic/+/refs/heads/android10-tests-release/libc/private/bionic_asm_tls.h#69.
    #define TLS_SLOT_APP 2
    
    // inittls allocates a thread-local storage slot for g.
    //
    // It finds the first available slot using pthread_key_create and uses
    // it as the offset value for runtime.tls_g.
    static void
    inittls(void **tlsg, void **tlsbase)
    {
    	pthread_key_t k;
    	int i, err;
    	void *handle, *get_ver, *off;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 09 23:17:17 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/resource/crd_finder.go

    			gks = append(gks, schema.GroupKind{
    				Group: group,
    				Kind:  kind,
    			})
    		}
    
    		return gks, nil
    	}
    }
    
    // CRDFinder keeps a cache of known CRDs and finds a given GVK in the
    // list.
    type CRDFinder interface {
    	HasCRD(gvk schema.GroupKind) (bool, error)
    }
    
    func NewCRDFinder(getter CRDGetter) CRDFinder {
    	return &crdFinder{
    		getter: getter,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 19 14:05:43 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  3. pkg/api/v1/persistentvolume/util_test.go

    		t.Logf("Missing expected secret paths:\n%s", strings.Join(sets.List[string](missingPaths), "\n"))
    		t.Error("Missing expected secret paths. Verify VisitPVSecretNames() is correctly finding the missing paths, then correct expectedSecretPaths")
    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    		t.Logf("Extra secret paths:\n%s", strings.Join(sets.List[string](extraPaths), "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. pkg/volume/util/device_util_linux_test.go

    	disk, err := findDeviceForPath("/dev/sde", io)
    	if err != nil {
    		t.Fatalf("error finding device for path /dev/sde:%v", err)
    	}
    	if disk != "sde" {
    		t.Fatalf("disk [%s] didn't match expected sde", disk)
    	}
    	disk, err = findDeviceForPath("/returns/a/dev", io)
    	if err != nil {
    		t.Fatalf("error finding device for path /returns/a/dev:%v", err)
    	}
    	if disk != "sde" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 8K bytes
    - Viewed (0)
  5. docs/de/docs/how-to/graphql.md

    Hier ist eine kleine Vorschau, wie Sie Strawberry mit FastAPI integrieren können:
    
    ```Python hl_lines="3  22  25-26"
    {!../../../docs_src/graphql/tutorial001.py!}
    ```
    
    Weitere Informationen zu Strawberry finden Sie in der <a href="https://strawberry.rocks/" class="external-link" target="_blank">Strawberry-Dokumentation</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:18:31 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/phi.go

    	_ [0]func() // ensure ir.Node isn't compared for equality
    	N ir.Node
    }
    
    func (fwdRefAux) CanBeAnSSAAux() {}
    
    // insertPhis finds all the places in the function where a phi is
    // necessary and inserts them.
    // Uses FwdRef ops to find all uses of variables, and s.defvars to find
    // all definitions.
    // Phi values are inserted, and all FwdRefs are changed to a Copy
    // of the appropriate phi or definition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_restore_op.cc

    using ::mlir::tf_saved_model::kTfSavedModelInitializerRestoreType;
    
    // This pass creates a RestoreV2 op in the initializer function with
    // type "restore_op" that initializes variables from checkpoint. It finds
    // tf.AssignVariableOp(tf.VarHandleOp, tf.Const) patterns in the initializer
    // function and replaces tf.Consts with the results of RestoreV2.
    class InsertRestoreOpPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 12 06:02:20 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/api/specs/AndSpec.java

            super(specs);
        }
    
        @Override
        public boolean isSatisfiedBy(T object) {
            return findUnsatisfiedSpec(object) == null;
        }
    
        /**
         * Finds the first {@link Spec} that is not satisfied by the object.
         *
         * @param object to check specs against
         * @return an unsatisfied spec or null
         *
         * @since 7.6
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

          saved_concrete_function.output_signature(), &rets));
    
      *out = SignatureDefFunctionMetadata(std::move(args), std::move(rets));
      return Status();
    }
    
    // This function finds the necessary captures, then forwards to the builder
    // method
    Status CreateConcreteFunction(ImmediateExecutionContext* ctx,
                                  const TFConcreteFunctionRevivalState& builder,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/ClassMetaData.java

                if (method.getName().equals(name)) {
                    methods.add(method);
                }
            }
            return methods;
        }
    
        /**
         * Finds a property by name. Includes inherited properties.
         *
         * @param name The property name.
         * @return The property, or null if no such property exists.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 10.1K bytes
    - Viewed (0)
Back to top