Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 724 for JOIN (0.06 sec)

  1. pkg/config/analysis/analyzers/gateway/conflictinggateway.go

    						conflictingGWMatch++
    						gateways = append(gateways, gwNameKey)
    					}
    				}
    			}
    		}
    		if conflictingGWMatch > 0 {
    			sort.Strings(gateways)
    			reportMsg := strings.Join(gateways, ",")
    			hostsMsg := strings.Join(server.GetHosts(), ",")
    			m := msg.NewConflictingGateways(r, reportMsg, sGWSelector, sPortNumber, hostsMsg)
    			c.Report(gvk.Gateway, m)
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsKotlinSettingsScriptIntegrationTest.groovy

            return "Settings file 'settings.gradle.kts'"
        }
    
        @Override
        void buildLogicApplication(BuildInputRead read) {
            settingsKotlinFile << """
                ${read.requiredImports().collect { "import $it" }.join("\n")}
    
                println("apply = " + ${read.kotlinExpression})
    
                gradle.rootProject {
                    tasks.register("thing") {
                        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. pkg/kubelet/pluginmanager/plugin_manager_test.go

    	for i := 0; i < maxDepth; i++ {
    		fakeHandler.Reset()
    		pluginDir := socketDir
    
    		for j := 0; j < i; j++ {
    			pluginDir = filepath.Join(pluginDir, strconv.Itoa(j))
    		}
    		require.NoError(t, os.MkdirAll(pluginDir, os.ModePerm))
    		socketPath := filepath.Join(pluginDir, fmt.Sprintf("plugin-%d.sock", i))
    
    		// Add a new plugin
    		pluginName := fmt.Sprintf("example-plugin-%d", i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/gc.go

    			}
    			if !isCgo && isOverlay {
    				rewrite += overlayPath + "=>" + filepath.Join(rewriteDir, base) + ";"
    			} else if isCgo {
    				// Generate rewrites for non-Go files copied to files in objdir.
    				if filepath.Dir(path) == a.Package.Dir {
    					// This is a file copied to objdir.
    					overlayNonGoRewrites += filepath.Join(objdir, base) + "=>" + filepath.Join(rewriteDir, base) + ";"
    				}
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. src/testing/fstest/testfs.go

    		}
    		t.errorf("expected empty file system but found files:\n%s", strings.Join(list, "\n"))
    	}
    	for _, name := range expected {
    		if !found[name] {
    			t.errorf("expected but not found: %s", name)
    		}
    	}
    	if len(t.errors) == 0 {
    		return nil
    	}
    	return fmt.Errorf("TestFS found errors:\n%w", errors.Join(t.errors...))
    }
    
    // An fsTester holds state for running the test.
    type fsTester struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. pkg/spiffe/spiffe_test.go

    	// make foo-certs-selfSigned
    	validRootCertFile1    = filepath.Join(env.IstioSrc, "security/pkg/pki/testdata/spiffe-root-cert-1.pem")
    	validRootCertFile2    = filepath.Join(env.IstioSrc, "security/pkg/pki/testdata/spiffe-root-cert-2.pem")
    	validIntCertFile      = filepath.Join(env.IstioSrc, "security/pkg/pki/testdata/spiffe-int-cert.pem")
    	validWorkloadCertFile = filepath.Join(env.IstioSrc, "security/pkg/pki/testdata/spiffe-workload-cert.pem")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/fsys/fsys.go

    		// On Windows filepath.Join(cwd, path) doesn't always work. In general
    		// filepath.Abs needs to make a syscall on Windows. Elsewhere in cmd/go
    		// use filepath.Join(cwd, path), but cmd/go specifically supports Windows
    		// paths that start with "\" which implies the path is relative to the
    		// volume of the working directory. See golang.org/issue/8130.
    		return filepath.Join(v, path)
    	}
    
    	// Make the path absolute.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. cni/pkg/install/cniconfig.go

    		PluginLogLevel:  cfg.PluginLogLevel,
    		LogUDSAddress:   cfg.LogUDSAddress,
    		CNIEventAddress: cfg.CNIEventAddress,
    		AmbientEnabled:  cfg.AmbientEnabled,
    		Kubernetes: plugin.Kubernetes{
    			Kubeconfig:        filepath.Join(cfg.CNINetDir, cfg.KubeconfigFilename),
    			ExcludeNamespaces: strings.Split(cfg.ExcludeNamespaces, ","),
    		},
    	}
    
    	pluginConfig.Name = "istio-cni"
    	pluginConfig.Type = "istio-cni"
    	pluginConfig.CNIVersion = "0.3.1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/analysis/resource_dataflow.cc

      } else if (auto it = dyn_cast<TF::IteratorOp>(value.getDefiningOp())) {
        return ResourceConstructingOps(it);
      }
      return ResourceConstructingOps();
    }
    
    ResourceConstructingOps ResourceConstructingOps::join(
        const ResourceConstructingOps &lhs, const ResourceConstructingOps &rhs) {
      // Take union of both sets of possible GlobalTensorOp values that can be
      // referenced here.
      ResourceConstructingOps ret;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. pkg/kubelet/util/util_unix.go

    )
    
    // LocalEndpoint returns the full path to a unix socket at the given endpoint
    func LocalEndpoint(path, file string) (string, error) {
    	u := url.URL{
    		Scheme: unixProtocol,
    		Path:   path,
    	}
    	return filepath.Join(u.String(), file+".sock"), nil
    }
    
    // NormalizePath is a no-op for Linux for now
    func NormalizePath(path string) string {
    	return path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top