Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 147 for Flatten (1.09 sec)

  1. platforms/documentation/docs/build.gradle

        FileFilter directoriesOnly = { it.directory }
        def topLevelDirs = file('src/snippets').listFiles(directoriesOnly)
        def snippetDirs = topLevelDirs*.listFiles(directoriesOnly).flatten().grep {
            new File(it, "kotlin").exists() || new File(it, "groovy").exists()
        }
    
        snippetDirs.each { File snippetDir ->
            String snippetName = snippetDir.name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  2. src/go/types/issues_test.go

    			}
    			continue
    		}
    		if test.err == "" {
    			t.Errorf("package %s: got %q, want not error", pkg.Name(), err.Error())
    		}
    
    		// flatten reported error message
    		errmsg := strings.ReplaceAll(err.Error(), "\n", " ")
    		errmsg = strings.ReplaceAll(errmsg, "\t", "")
    
    		// verify error message
    		if !strings.Contains(errmsg, test.err) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/run.go

    		}
    	} else {
    		groupIsNoneOf := CombineMatchers(ownerGroupsFilter.Values, func(group string) []string {
    			return []string{"-m", "owner", "!", "--gid-owner", group}
    		})
    		f.Run(Flatten([]string{"-p", "udp", "--dport", "53"}, groupIsNoneOf, []string{"-j", constants.RETURN})...)
    	}
    
    	if captureAllDNS {
    		// Redirect all UDP dns traffic on port 53 to the agent on port 15053
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/issues_test.go

    			}
    			continue
    		}
    		if test.err == "" {
    			t.Errorf("package %s: got %q, want not error", pkg.Name(), err.Error())
    		}
    
    		// flatten reported error message
    		errmsg := strings.ReplaceAll(err.Error(), "\n", " ")
    		errmsg = strings.ReplaceAll(errmsg, "\t", "")
    
    		// verify error message
    		if !strings.Contains(errmsg, test.err) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  5. src/cmd/internal/dwarf/dwarf.go

    	// with respect to the start of the parent subprogram DIE.
    	var offsets []int32
    
    	// Scopes/vars
    	if len(s.Scopes) > 0 {
    		// For abstract subprogram DIEs we want to flatten out scope info:
    		// lexical scope DIEs contain range and/or hi/lo PC attributes,
    		// which we explicitly don't want for the abstract subprogram DIE.
    		pvars := inlinedVarTable(&s.InlCalls)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  6. istioctl/pkg/proxyconfig/proxyconfig.go

    				} else {
    					_, _ = fmt.Fprintf(c.OutOrStdout(), "%v.%v:\n%v", podName, podNamespace, resp)
    				}
    			}
    			if err := multierror.Flatten(errs.ErrorOrNil()); err != nil {
    				return err
    			}
    			return nil
    		},
    		ValidArgsFunction: completion.ValidPodsNameArgs(ctx),
    	}
    
    	levelListString := fmt.Sprintf("[%s, %s, %s, %s, %s, %s, %s]",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/security/simple-oauth2.md

        Aber `OAuth2PasswordRequestForm` ist nur eine Klassenabhängigkeit, die Sie selbst hätten schreiben können, oder Sie hätten `Form`ular-Parameter direkt deklarieren können.
    
        Da es sich jedoch um einen häufigen Anwendungsfall handelt, wird er zur Vereinfachung direkt von **FastAPI** bereitgestellt.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:44 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/bigger-applications.md

    Das Endergebnis ist, dass die Pfade für diese Artikel jetzt wie folgt lauten:
    
    * `/items/`
    * `/items/{item_id}`
    
    ... wie wir es beabsichtigt hatten.
    
    * Sie werden mit einer Liste von Tags gekennzeichnet, die einen einzelnen String `"items"` enthält.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:59 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_tpu_device.cc

    static bool tpu_use_substreams_for_cross_tpu_device_transfers_flag = true;
    
    // Given a tensor of `shape` and `type`, as what shape should it be stored on
    // the TPU device? This function tranposes or flattens the excessively-padded
    // tensors to rank 1, but leaves other tensor shapes alone.
    absl::StatusOr<xla::Shape> TpuShapeRepresentation(
        const TensorShape& shape, DataType type, bool use_fast_memory,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      pm.addPass(mlir::TFTPU::CreateTPUClusterCleanupAttributesPass());
      pm.addNestedPass<FuncOp>(mlir::TFDevice::CreateDeviceAttributeToLaunchPass());
      // Running canonicalizer before decomposing resource ops in cluster helps the
      // latter pass to converge faster as it does not have to spend time folding
      // away dead ops.
      pm.addNestedPass<FuncOp>(mlir::createCanonicalizerPass());
      // Place DecomposeResourceOpsPass before TFExecutorConstantSinking pass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (1)
Back to top